Fix theme store management

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-02-25 09:07:16 +00:00
parent c5dc372dca
commit 083b9055bc

View File

@@ -8,9 +8,7 @@
let
cfg = config.theme;
wallpaper = pkgs.runCommandLocal "wallpaper" { } ''
ln -s ${cfg.wallpaper} $out
'';
wallpaper = pkgs.copyPathToStore cfg.wallpaper;
init = pkgs.writeShellApplication {
name = "theme-init";