modularize configuration

This commit is contained in:
System administrator
2021-12-15 18:14:48 +01:00
parent fd5a03ec99
commit ae1a91bc2d
6 changed files with 213 additions and 94 deletions

9
users/oysteikt.nix Normal file
View File

@@ -0,0 +1,9 @@
{pkgs, ...}:
{
users.users.oysteikt = {
isNormalUser = true;
#extraGroups = [ "wheel" ]; # Enable sudo for the user.
shell = pkgs.zsh;
};
}