Commit b46a02b

HPCesia <me@hpcesia.com>
2025-12-05 16:58:26
feat: replace nemo with thunar
1 parent 8b8f334
Changed files (1)
modules
desktop
desktop-environment
modules/desktop/desktop-environment/discrete/file-manager.nix
@@ -1,9 +1,11 @@
 {
-  flake.modules.homeManager.de-discrete = {pkgs, ...}: {
-    home.packages = [
-      (pkgs.nemo-with-extensions.override {
-        extensions = [pkgs.nemo-preview];
-      })
-    ];
+  flake.modules.nixos.de-discrete = {pkgs, ...}: {
+    programs.thunar = {
+      enable = true;
+      plugins = with pkgs.xfce; [
+        thunar-archive-plugin
+        thunar-volman
+      ];
+    };
   };
 }