Move nix.settings

This commit is contained in:
2024-07-11 19:20:57 -07:00
parent 9bf329b9d1
commit 01f87a620d
2 changed files with 4 additions and 3 deletions

View File

@@ -4,7 +4,6 @@
modules = [
{
networking.hostName = hostName;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = stateVersion;
time.timeZone = timeZone;
}

View File

@@ -1,11 +1,13 @@
{ options, config, lib, ... }:
{
networking.networkmanager.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
users.users = {
nettika = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
};
networking.networkmanager.enable = true;
}