Your one-stop-cake-shop for everything Freshly Baked has to offer

fix(quickshell): move out of subdirectory

When we implemented ingredients, we accidentally left quickshell in a
subdirectory where it'd never be used...

...that led to our overview background, time and battery indicators
being missing since as the code to display them was never imported...

...oops

+2 -2
+2 -2
packetmix/homes/niri/quickshell/default.nix packetmix/homes/niri/quickshell.nix
··· 21 21 configs.sprinkles = pkgs.stdenv.mkDerivation { 22 22 name = "sprinkles-config"; 23 23 24 - src = ./.; 24 + src = ./quickshell; 25 25 dontUnpack = true; 26 26 27 27 buildPhase = '' 28 28 mkdir -p $out 29 29 30 30 cp -r $src/*.qml $out 31 - cp ${config.niri.overviewBackground} $out/background.png 31 + cp ${config.ingredient.niri.niri.overviewBackground} $out/background.png 32 32 ''; 33 33 }; 34 34