Loading
nixos/regreet: fix extraCss store paths written as literal text
lib.isPath only matches Nix path literals, not strings containing store paths. When extraCss is set to a derivation's outPath (a string like "/nix/store/..."), the condition falls through to the `text` branch, writing the store path as literal CSS content instead of using it as a file source. Add lib.isStorePath to the condition so string store paths are correctly handled via `source`. Ref: https://github.com/nix-community/stylix/issues/2190