Initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
{ 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";
|
||||
}
|
||||
Reference in New Issue
Block a user