mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 04:21:53 -05:00
defaultApps: set xfce4 helpers.rc
This commit is contained in:
parent
7dc73c6e4e
commit
39bf1b0b54
|
@ -14,11 +14,5 @@
|
|||
xfce.tumbler
|
||||
xfce.xfconf
|
||||
];
|
||||
|
||||
xdg.configFile."xfce4/helpers.rc".text = ''
|
||||
FileManager=thunar
|
||||
TerminalEmulator=kitty
|
||||
WebBrowser=firefox
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
|
@ -36,6 +36,12 @@ in {
|
|||
};
|
||||
|
||||
xdg = {
|
||||
configFile."xfce4/helpers.rc".text = ''
|
||||
FileManager=${builtins.baseNameOf (lib.getExe cfg.fileManager)}
|
||||
TerminalEmulator=${builtins.baseNameOf (lib.getExe cfg.terminal)}
|
||||
WebBrowser=${builtins.baseNameOf (lib.getExe cfg.webBrowser)}
|
||||
'';
|
||||
|
||||
mimeApps = {
|
||||
enable = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue