1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

hyprshell: fixed path for style file

This commit is contained in:
Enrico Stemmer 2025-10-03 22:43:29 +02:00 committed by Austin Horstman
parent edfbe06e1a
commit bdf78c2d2c

View file

@ -77,7 +77,7 @@ in
source = jsonFormat.generate "hyprshell-config" cfg.settings;
};
xdg.configFile."hyprshell/style.css" = mkIf (cfg.style != "") {
xdg.configFile."hyprshell/styles.css" = mkIf (cfg.style != "") {
source = if lib.isString cfg.style then pkgs.writeText "hyprshell-style" cfg.style else cfg.style;
};