mirror of
https://github.com/nix-community/home-manager
synced 2024-11-27 05:29:46 +01:00
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
1 changed files with 4 additions and 1 deletions
|
@ -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