diff options
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/olive/configuration.nix | 16 | ||||
-rw-r--r-- | hosts/olive/hardware-configuration.nix | 2 |
2 files changed, 7 insertions, 11 deletions
diff --git a/hosts/olive/configuration.nix b/hosts/olive/configuration.nix index 77e3ffb..66b5bdc 100644 --- a/hosts/olive/configuration.nix +++ b/hosts/olive/configuration.nix | |||
@@ -1,7 +1,3 @@ | |||
1 | # Edit this configuration file to define what should be installed on | ||
2 | # your system. Help is available in the configuration.nix(5) man page | ||
3 | # and in the NixOS manual (accessible by running ‘nixos-help’). | ||
4 | |||
5 | { config, pkgs, lib, self, ... }: | 1 | { config, pkgs, lib, self, ... }: |
6 | 2 | ||
7 | { | 3 | { |
@@ -132,14 +128,14 @@ | |||
132 | keep-outputs = false | 128 | keep-outputs = false |
133 | keep-derivations = true | 129 | keep-derivations = true |
134 | ''; | 130 | ''; |
131 | settings = { | ||
132 | trusted-users = [ | ||
133 | "root" | ||
134 | "np" | ||
135 | ]; | ||
136 | }; | ||
135 | }; | 137 | }; |
136 | 138 | ||
137 | nix.trustedUsers = | ||
138 | [ | ||
139 | "root" | ||
140 | "np" | ||
141 | ]; | ||
142 | |||
143 | # This value determines the NixOS release from which the default | 139 | # This value determines the NixOS release from which the default |
144 | # settings for stateful data, like file locations and database versions | 140 | # settings for stateful data, like file locations and database versions |
145 | # on your system were taken. It‘s perfectly fine and recommended to leave | 141 | # on your system were taken. It‘s perfectly fine and recommended to leave |
diff --git a/hosts/olive/hardware-configuration.nix b/hosts/olive/hardware-configuration.nix index fc9ccb8..c2bff39 100644 --- a/hosts/olive/hardware-configuration.nix +++ b/hosts/olive/hardware-configuration.nix | |||
@@ -31,6 +31,6 @@ | |||
31 | 31 | ||
32 | swapDevices = [ ]; | 32 | swapDevices = [ ]; |
33 | 33 | ||
34 | nix.maxJobs = lib.mkDefault 8; | 34 | nix.settings.max-jobs = lib.mkDefault 8; |
35 | powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; | 35 | powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; |
36 | } | 36 | } |