Added default personal.nix

This commit is contained in:
agryphus 2023-10-18 00:51:14 -04:00
parent df145f09c8
commit 2dcb7d7186

View file

@ -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 = ""
};
}