Nix-Hyprland/nixos/modules/user.nix
2024-05-21 06:37:47 -04:00

18 lines
375 B
Nix

{ pkgs, ... }: {
programs.zsh.enable = true;
users = {
defaultUserShell = pkgs.zsh;
users.wyj = {
isNormalUser = true;
description = "Yingjie Wang";
extraGroups = [ "networkmanager" "wheel" "input" "libvirtd" ];
packages = with pkgs; [];
};
};
# Enable automatic login for the user.
#services.getty.autologinUser = "amper";
}