nix-config/home/thunar.nix
Donovan Glover 85c89ab496
meta: Move icoextract/thud to thunar module
This helps clarify that icoextract and thud are used with thunar
specifically.
2024-08-15 22:46:05 -04:00

15 lines
211 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
icoextract
thud
];
xdg.configFile."xfce4/helpers.rc".text = # ini
''
TerminalEmulator=kitty
TerminalEmulatorDismissed=true
'';
}