aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/desktop.nix1
-rw-r--r--nixos/modules/develop.nix4
-rw-r--r--nixos/modules/generic.nix2
3 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix
index 1ef5354..a3d5ba7 100644
--- a/nixos/modules/desktop.nix
+++ b/nixos/modules/desktop.nix
@@ -162,6 +162,7 @@ in {
hardware.bluetooth.enable = mkIf cnf.laptop true;
+ documentation.man.man-db.enable = true;
};
}
diff --git a/nixos/modules/develop.nix b/nixos/modules/develop.nix
index bf5c2de..c9a0c22 100644
--- a/nixos/modules/develop.nix
+++ b/nixos/modules/develop.nix
@@ -98,8 +98,12 @@ in {
#armv7l.buildPackages.gcc armv7l.buildPackages.gdb
pkgsCross.arm-embedded.buildPackages.gcc
+ # Documentation
+ man-pages man-pages-posix
];
+ documentation.dev.enable = true;
+
};
}
diff --git a/nixos/modules/generic.nix b/nixos/modules/generic.nix
index 4cd4953..d02cbba 100644
--- a/nixos/modules/generic.nix
+++ b/nixos/modules/generic.nix
@@ -70,7 +70,7 @@ with lib;
};
cynerd = {
group = "cynerd";
- extraGroups = ["users" "wheel"];
+ extraGroups = ["users" "wheel" "dialout"];
uid = 1000;
subUidRanges = [{ count = 65534; startUid = 10000; }];
subGidRanges = [{ count = 65534; startGid = 10000; }];