nix-config/home-manager/thunar/default.nix
Donovan Glover 9c64fffdc8
Combine system configuration with home-manager
This works well since I am not interested in different users on the same
machine having different state, and keeps all the relevant configuration
for specific programs in one file.
2023-05-17 08:44:15 -04:00

14 lines
266 B
Nix

{ pkgs, ... }:
{
programs.thunar.enable = true;
environment.systemPackages = [ pkgs.xfce.exo ];
home-manager.sharedModules = [{
xdg.configFile."xfce4/helpers.rc".text = ''
TerminalEmulator=kitty
TerminalEmulatorDismissed=true
'';
}];
}