mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 08:51:54 -05:00
defaultApps: set xfce4 helpers.rc
This commit is contained in:
parent
7dc73c6e4e
commit
39bf1b0b54
|
@ -14,11 +14,5 @@
|
||||||
xfce.tumbler
|
xfce.tumbler
|
||||||
xfce.xfconf
|
xfce.xfconf
|
||||||
];
|
];
|
||||||
|
|
||||||
xdg.configFile."xfce4/helpers.rc".text = ''
|
|
||||||
FileManager=thunar
|
|
||||||
TerminalEmulator=kitty
|
|
||||||
WebBrowser=firefox
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,12 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg = {
|
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 = {
|
mimeApps = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue