diff --git a/.config/nixos/personal.nix b/.config/nixos/personal.nix new file mode 100644 index 0000000..45c8951 --- /dev/null +++ b/.config/nixos/personal.nix @@ -0,0 +1,22 @@ +{ config, pkgs, ... }: +# A template for a personal configuration file +{ + # Up to the user. No unfree packages will be in main configuration.nix + # nixpkgs.config.allowUnfree = true; + + users.users.vince { + isNormalUser = true; + extraGroups = [ # User is implicitly in the "users" group + "wheel" # Sudo priviledges + "networkmanager" # Able to user NetworkManager + ]; + packages = with pkgs; [ + + ]; + shell = pkgs.zsh; + + # Set so when mutableUsers is set to "false", the user still has a way to login. + # password = "" + }; +} +