diff --git a/nixos-configurations/laptop/default.nix b/nixos-configurations/laptop/default.nix index 2289759..1044b99 100644 --- a/nixos-configurations/laptop/default.nix +++ b/nixos-configurations/laptop/default.nix @@ -9,7 +9,6 @@ networking = { hostName = "laptop"; - networkmanager.enable = true; }; services.xserver.libinput.enable = true; diff --git a/nixos-configurations/shared.nix b/nixos-configurations/shared.nix index 38e0e09..891a750 100644 --- a/nixos-configurations/shared.nix +++ b/nixos-configurations/shared.nix @@ -8,6 +8,8 @@ nix.settings.experimental-features = [ "nix-command" "flakes" ]; + networking.networkmanager.enable = true; + time.timeZone = "Europe/Amsterdam"; services = { @@ -40,7 +42,7 @@ users.users.thiloho = { isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ "wheel" "networkmanager" ]; }; # Home manager configuration