diff options
Diffstat (limited to 'hosts/olive/configuration.nix')
-rw-r--r-- | hosts/olive/configuration.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/hosts/olive/configuration.nix b/hosts/olive/configuration.nix index 68b7d99..da3175b 100644 --- a/hosts/olive/configuration.nix +++ b/hosts/olive/configuration.nix | |||
@@ -70,9 +70,15 @@ | |||
70 | 70 | ||
71 | environment.systemPackages = with pkgs; [ | 71 | environment.systemPackages = with pkgs; [ |
72 | _2bwm | 72 | _2bwm |
73 | manpages | 73 | man-pages |
74 | man-pages-posix | ||
74 | ]; | 75 | ]; |
75 | 76 | ||
77 | documentation = { | ||
78 | dev.enable = true; | ||
79 | man.generateCaches = true; | ||
80 | }; | ||
81 | |||
76 | users.motd = with config; '' | 82 | users.motd = with config; '' |
77 | Host ${networking.hostName} | 83 | Host ${networking.hostName} |
78 | OS NixOS ${system.nixos.release} (${system.nixos.codeName}) | 84 | OS NixOS ${system.nixos.release} (${system.nixos.codeName}) |
@@ -117,8 +123,6 @@ | |||
117 | extraGroups = [ "wheel" "users" "tty" "audio" "video" "input" "adbusers" "docker" ]; | 123 | extraGroups = [ "wheel" "users" "tty" "audio" "video" "input" "adbusers" "docker" ]; |
118 | }; | 124 | }; |
119 | 125 | ||
120 | documentation.man.generateCaches = true; | ||
121 | |||
122 | nix = { | 126 | nix = { |
123 | package = pkgs.nixUnstable; | 127 | package = pkgs.nixUnstable; |
124 | extraOptions = '' | 128 | extraOptions = '' |