From bdf78c2d2c285683b02abca8071f11a1667b212a Mon Sep 17 00:00:00 2001 From: Enrico Stemmer Date: Fri, 3 Oct 2025 22:43:29 +0200 Subject: [PATCH] hyprshell: fixed path for style file --- modules/services/hyprshell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/hyprshell.nix b/modules/services/hyprshell.nix index e38a9ebd..d4cee1bd 100644 --- a/modules/services/hyprshell.nix +++ b/modules/services/hyprshell.nix @@ -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; };