diff options
author | Karel Kočí <cynerd@email.cz> | 2024-05-06 12:42:11 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-05-06 12:42:11 +0200 |
commit | 681b76f6044978d9fca68202f6f85d3c4f5a8477 (patch) | |
tree | d424a815906540cd5f495dafdb65fbc505cf7ee3 | |
parent | d624ea8ad80d5d794dedf4f2c5ba1bfe6640b751 (diff) | |
download | nixos-personal-681b76f6044978d9fca68202f6f85d3c4f5a8477.tar.gz nixos-personal-681b76f6044978d9fca68202f6f85d3c4f5a8477.tar.bz2 nixos-personal-681b76f6044978d9fca68202f6f85d3c4f5a8477.zip |
nixos: tweak and remove some packages no longer used and add few
-rw-r--r-- | nixos/modules/desktop.nix | 8 | ||||
-rw-r--r-- | nixos/modules/develop.nix | 5 | ||||
-rw-r--r-- | nixos/modules/packages.nix | 2 | ||||
-rw-r--r-- | nixos/modules/users.nix | 2 |
4 files changed, 4 insertions, 13 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix index f6cfba5..0c8f287 100644 --- a/nixos/modules/desktop.nix +++ b/nixos/modules/desktop.nix @@ -275,14 +275,6 @@ in { davfs2.enable = true; locate.enable = true; - snapper.configs = { - home = { - SUBVOLUME = "/home"; - ALLOW_GROUPS = ["users"]; - TIMELINE_CREATE = true; - TIMELINE_CLEANUP = true; - }; - }; }; # Beneficial for Pipewire diff --git a/nixos/modules/develop.nix b/nixos/modules/develop.nix index 25c40c3..a18c7ac 100644 --- a/nixos/modules/develop.nix +++ b/nixos/modules/develop.nix @@ -22,8 +22,8 @@ in { gitlint tig gource - hub - github-cli # Git + glab + github-cli wlc # Weblate cloc openssl @@ -47,6 +47,7 @@ in { statix deadnix agenix + nix-tree # Shell dash # Posix shell diff --git a/nixos/modules/packages.nix b/nixos/modules/packages.nix index 0eb64e6..bbb3e8e 100644 --- a/nixos/modules/packages.nix +++ b/nixos/modules/packages.nix @@ -80,7 +80,5 @@ in { ++ optionals isNative [ ncdu moreutils - glances - mlocate ]; } diff --git a/nixos/modules/users.nix b/nixos/modules/users.nix index d169423..d098ec7 100644 --- a/nixos/modules/users.nix +++ b/nixos/modules/users.nix @@ -15,7 +15,7 @@ in { }; cynerd = { group = "cynerd"; - extraGroups = ["users" "wheel" "dialout" "kvm" "uucp" "wireshark" "leds"]; + extraGroups = ["users" "wheel" "video" "dialout" "kvm" "uucp" "wireshark" "leds"]; uid = 1000; subUidRanges = [ { |