diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-08-31 14:21:34 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-08-31 14:21:34 +0000 |
| commit | bfd970a07c231b5781871c16cb4612eb4c6b8fd4 (patch) | |
| tree | 50a4ac5138d1f438e4d5bad3a3dd880a0784cd3e /modules/client/thunar/default.nix | |
| parent | added flake (diff) | |
imported system/home-manager config
Diffstat (limited to '')
| -rw-r--r-- | modules/client/thunar/default.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/client/thunar/default.nix b/modules/client/thunar/default.nix new file mode 100644 index 0000000..0caaabf --- /dev/null +++ b/modules/client/thunar/default.nix @@ -0,0 +1,24 @@ +{ config, pkgs, ... }: +{ + services = { + gvfs.enable = true; + # TODO: Check if I need these + # udisks2.enable = true; + # devmon.enable = true; + tumbler.enable = true; + }; + + programs = { + thunar = { + enable = true; + + plugins = with pkgs.xfce; [ + thunar-archive-plugin + thunar-media-tags-plugin + thunar-volman + ]; + }; + + file-roller.enable = true; + }; +} |
