Added default personal.nix
This commit is contained in:
parent
df145f09c8
commit
2dcb7d7186
1 changed files with 22 additions and 0 deletions
22
.config/nixos/personal.nix
Normal file
22
.config/nixos/personal.nix
Normal 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 = ""
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue