🐛 [shared] Fix missing background on sddm

This commit is contained in:
2025-05-27 18:27:07 +02:00
parent 1595e260d5
commit dcad8f12b9

View File

@ -1,4 +1,9 @@
{ pkgs, theme, ... }: {
pkgs,
lib,
theme,
...
}:
let let
flavor = theme.flavor; flavor = theme.flavor;
in in
@ -8,7 +13,7 @@ in
flavor = flavor; flavor = flavor;
font = theme.nerdFont; font = theme.nerdFont;
fontSize = "9"; fontSize = "9";
background = builtins.toString ../assets/catppuccin_high.png; background = builtins.toString (lib.custom.relativeToRoot "shared/assets/catppuccin_high.png");
loginBackground = true; loginBackground = true;
}) })
]; ];