Nix-Hyprland/nixos/modules/user.nix

18 lines
375 B
Nix
Raw Normal View History

2024-04-16 20:52:14 -04:00
{ pkgs, ... }: {
programs.zsh.enable = true;
users = {
defaultUserShell = pkgs.zsh;
2024-05-21 06:37:47 -04:00
users.wyj = {
2024-04-16 20:52:14 -04:00
isNormalUser = true;
2024-05-21 06:37:47 -04:00
description = "Yingjie Wang";
2024-04-16 20:52:14 -04:00
extraGroups = [ "networkmanager" "wheel" "input" "libvirtd" ];
packages = with pkgs; [];
};
};
# Enable automatic login for the user.
2024-05-21 06:37:47 -04:00
#services.getty.autologinUser = "amper";
2024-04-16 20:52:14 -04:00
}