1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02: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:
Tiago Lagger 2024-01-12 16:52:13 +00:00 committed by GitHub
parent 93e804e7f8
commit 191e9b20f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
};
}