nix-config/modules/thunar.nix

24 lines
337 B
Nix
Raw Normal View History

2023-07-05 17:24:58 +02:00
{ pkgs, ... }:
2024-04-03 15:59:32 +02:00
let
inherit (pkgs.xfce) thunar-volman exo;
inherit (pkgs) glib;
in
2023-07-05 17:24:58 +02:00
{
2024-04-03 15:59:32 +02:00
programs.thunar = {
enable = true;
plugins = [ thunar-volman ];
};
2023-06-05 03:26:34 +02:00
2024-04-03 15:59:32 +02:00
services = {
tumbler.enable = true;
gvfs.enable = true;
gnome.gnome-keyring.enable = true;
};
environment.systemPackages = [
exo
glib
];
}