diff options
author | Karel Kočí <cynerd@email.cz> | 2022-06-13 11:00:56 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-06-13 11:00:56 +0200 |
commit | c4beeb71c3b4bd964510731b5d6c129b8065bbca (patch) | |
tree | f0d9611e24fca1166fbcf51762ce1da9b40c1c87 /nixos | |
parent | 4fa33b32e2567276f84a8ef49cb01328db801fe2 (diff) | |
download | nixos-personal-c4beeb71c3b4bd964510731b5d6c129b8065bbca.tar.gz nixos-personal-c4beeb71c3b4bd964510731b5d6c129b8065bbca.tar.bz2 nixos-personal-c4beeb71c3b4bd964510731b5d6c129b8065bbca.zip |
nixos: documentation, dialout user and few more packages to the C
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/modules/desktop.nix | 1 | ||||
-rw-r--r-- | nixos/modules/develop.nix | 4 | ||||
-rw-r--r-- | nixos/modules/generic.nix | 2 |
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; }]; |