Remove mkHost helper
This commit is contained in:
parent
01f87a620d
commit
13cb1c6223
5 changed files with 31 additions and 33 deletions
16
common.nix
Normal file
16
common.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue