18 lines
373 B
Nix
18 lines
373 B
Nix
|
{ pkgs, ... }: {
|
||
|
programs.zsh.enable = true;
|
||
|
|
||
|
users = {
|
||
|
defaultUserShell = pkgs.zsh;
|
||
|
|
||
|
users.amper = {
|
||
|
isNormalUser = true;
|
||
|
description = "Ampersand";
|
||
|
extraGroups = [ "networkmanager" "wheel" "input" "libvirtd" ];
|
||
|
packages = with pkgs; [];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
# Enable automatic login for the user.
|
||
|
services.getty.autologinUser = "amper";
|
||
|
}
|