aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/modules/desktop.nix8
-rw-r--r--nixos/modules/develop.nix5
2 files changed, 11 insertions, 2 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix
index ff2a541..d5e8b80 100644
--- a/nixos/modules/desktop.nix
+++ b/nixos/modules/desktop.nix
@@ -247,7 +247,13 @@ in {
package = pkgs.openrgb-with-all-plugins;
};
- documentation.man.man-db.enable = true;
+ documentation = {
+ man = {
+ enable = true;
+ generateCaches = true;
+ };
+ info.enable = true;
+ };
services.snapper.configs = {
home = {
diff --git a/nixos/modules/develop.nix b/nixos/modules/develop.nix
index fa4034d..ad5acc1 100644
--- a/nixos/modules/develop.nix
+++ b/nixos/modules/develop.nix
@@ -124,7 +124,10 @@ with lib; {
];
programs.wireshark.enable = true;
- documentation.dev.enable = true;
+ documentation = {
+ dev.enable = true;
+ doc.enable = true;
+ };
services.udev.extraRules = ''
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="3748", MODE:="0660", GROUP="develop", SYMLINK+="stlinkv2_%n"