2024-05-30 16:54:58 -03:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
2023-01-24 09:39:19 -03:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
_thunar-terminal
|
|
|
|
(xfce.thunar.override {
|
2024-05-30 16:54:58 -03:00
|
|
|
thunarPlugins = with pkgs.xfce; [
|
|
|
|
thunar-volman
|
|
|
|
thunar-archive-plugin
|
|
|
|
];
|
2023-01-24 09:39:19 -03:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2024-07-15 11:49:06 -03:00
|
|
|
wayland.windowManager.sway = {
|
|
|
|
extraConfig = ''
|
|
|
|
exec_always systemctl --user import-environment PATH
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-01-24 09:39:19 -03:00
|
|
|
xdg.configFile = {
|
|
|
|
"Thunar/".source = ./thunar;
|
|
|
|
};
|
|
|
|
}
|