diff --git a/flake.lock b/flake.lock index 68aa9aa..183bb1a 100644 --- a/flake.lock +++ b/flake.lock @@ -225,11 +225,11 @@ ] }, "locked": { - "lastModified": 1705879479, - "narHash": "sha256-ZIohbyly1KOe+8I3gdyNKgVN/oifKdmeI0DzMfytbtg=", + "lastModified": 1706001011, + "narHash": "sha256-J7Bs9LHdZubgNHZ6+eE/7C18lZ1P6S5/zdJSdXFItI4=", "owner": "nix-community", "repo": "home-manager", - "rev": "2d47379ad591bcb14ca95a90b6964b8305f6c913", + "rev": "3df2a80f3f85f91ea06e5e91071fa74ba92e5084", "type": "github" }, "original": { diff --git a/sets/documentation.nix b/sets/documentation.nix new file mode 100644 index 0000000..32cddfd --- /dev/null +++ b/sets/documentation.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ man-pages ]; + + documentation = { + dev.enable = true; + man.generateCaches = true; + }; +} diff --git a/sets/packages.nix b/sets/packages.nix index 4e6d54c..37754c2 100644 --- a/sets/packages.nix +++ b/sets/packages.nix @@ -18,7 +18,6 @@ hdparm iptables lm_sensors - man-pages nethogs nvme-cli parted diff --git a/sets/workstation.nix b/sets/workstation.nix index 73e7b92..5474333 100644 --- a/sets/workstation.nix +++ b/sets/workstation.nix @@ -5,6 +5,7 @@ ../home ./1password.nix ./base.nix + ./documentation.nix ./firefox.nix ./nix-index.nix ./nixvim.nix