diff options
| -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 = [            {  | 
