fix(programs/eww): make eww config folder recursive
Eww config hot reloading doesn't work properly when the config folder itself is swapped, with this on, it will change the files inside the folder, triggering a hot reload.
This commit is contained in:
parent
93e804e7f8
commit
191e9b20f2
|
@ -34,6 +34,9 @@ in {
|
|||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ cfg.package ];
|
||||
xdg.configFile."eww".source = cfg.configDir;
|
||||
xdg.configFile."eww" = {
|
||||
source = cfg.configDir;
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue