aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--devShells/c.nix3
-rw-r--r--nixos/modules/desktop.nix1
-rw-r--r--nixos/modules/develop.nix4
-rw-r--r--nixos/modules/generic.nix2
4 files changed, 8 insertions, 2 deletions
diff --git a/devShells/c.nix b/devShells/c.nix
index 2a16700..949b291 100644
--- a/devShells/c.nix
+++ b/devShells/c.nix
@@ -4,7 +4,8 @@ let
in pkgs.mkShell {
packages = (with pkgs; [
- ccls gcc gdb
+ clang-tools
+ gcc gdb
cppcheck flawfinder bear
meson
lcov massif-visualizer
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; }];