mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
85c89ab496
This helps clarify that icoextract and thud are used with thunar specifically.
15 lines
211 B
Nix
15 lines
211 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
icoextract
|
|
thud
|
|
];
|
|
|
|
xdg.configFile."xfce4/helpers.rc".text = # ini
|
|
''
|
|
TerminalEmulator=kitty
|
|
TerminalEmulatorDismissed=true
|
|
'';
|
|
}
|