Remove mkHost helper

This commit is contained in:
Nettika 2024-07-11 19:42:29 -07:00
parent 01f87a620d
commit 13cb1c6223
5 changed files with 31 additions and 33 deletions

16
common.nix Normal file
View file

@ -0,0 +1,16 @@
{ hostName, ... }:
{
networking = {
inherit hostName;
networkmanager.enable = true;
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
users.users = {
nettika = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
};
}