nix-config/modules/thunar.nix
2024-04-03 09:59:32 -04:00

24 lines
337 B
Nix

{ pkgs, ... }:
let
inherit (pkgs.xfce) thunar-volman exo;
inherit (pkgs) glib;
in
{
programs.thunar = {
enable = true;
plugins = [ thunar-volman ];
};
services = {
tumbler.enable = true;
gvfs.enable = true;
gnome.gnome-keyring.enable = true;
};
environment.systemPackages = [
exo
glib
];
}