mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:03:55 -05:00
36 lines
777 B
Nix
36 lines
777 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {alyraffauf.apps.thunar.enable = lib.mkEnableOption "Enable thunar.";};
|
|
|
|
config = lib.mkIf config.alyraffauf.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
|
|
xfce.xfconf
|
|
];
|
|
|
|
xdg.configFile."xfce4/helpers.rc".text = ''
|
|
TerminalEmulator=alacritty
|
|
FileManager=thunar
|
|
WebBrowser=firefox
|
|
'';
|
|
|
|
# xfconf.settings = {
|
|
# thunar = {
|
|
# "last-menubar-visible" = false;
|
|
# "misc-confirm-close-multiple-tabs" = false;
|
|
# "misc-show-delete-action" = true;
|
|
# "misc-single-click" = true;
|
|
# };
|
|
# };
|
|
};
|
|
}
|