nixcfg/homeManagerModules/apps/thunar/default.nix

25 lines
445 B
Nix
Raw Normal View History

{
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.ar.home.apps.thunar.enable {
home.packages = with pkgs; [
xfce.thunar
xfce.thunar-archive-plugin
xfce.thunar-media-tags-plugin
xfce.thunar-volman
xfce.exo
xfce.tumbler
2024-04-28 14:05:48 -04:00
xfce.xfconf
];
xdg.configFile."xfce4/helpers.rc".text = ''
FileManager=thunar
2024-06-03 22:10:25 -04:00
TerminalEmulator=alacritty
WebBrowser=firefox
'';
};
}