mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-02 02:49:44 +01:00
9c64fffdc8
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.
14 lines
266 B
Nix
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
|
|
'';
|
|
}];
|
|
}
|