Unverified Commit 4fb204ee authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

nixos/regreet: fix extraCss store paths written as literal text (#487771)

parents ea642f52 abd94905
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -159,7 +159,10 @@ in

    environment.etc = {
      "greetd/regreet.css" =
        if lib.isPath cfg.extraCss then { source = cfg.extraCss; } else { text = cfg.extraCss; };
        if lib.isPath cfg.extraCss || lib.isStorePath cfg.extraCss then
          { source = cfg.extraCss; }
        else
          { text = cfg.extraCss; };

      "greetd/regreet.toml".source =
        if lib.isPath cfg.settings then