Move mkHost helper into a separate module

This commit is contained in:
2024-07-11 19:18:29 -07:00
parent f7872964ec
commit 9bf329b9d1
6 changed files with 35 additions and 61 deletions

View File

@@ -1,6 +1,11 @@
{ ... }:
{ options, config, lib, ... }:
{
imports = [
./users.nix
];
users.users = {
nettika = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
};
networking.networkmanager.enable = true;
}

View File

@@ -1,9 +0,0 @@
{ ... }:
{
users.users = {
nettika = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
};
}