From 083b9055bc93cd96327c2f3e57f127e91e93d81b Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Tue, 25 Feb 2025 09:07:16 +0000 Subject: [PATCH] Fix theme store management Signed-off-by: Nikolaos Karaolidis --- hosts/common/configs/user/gui/theme/options.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hosts/common/configs/user/gui/theme/options.nix b/hosts/common/configs/user/gui/theme/options.nix index 5fd277d..16bf7a9 100644 --- a/hosts/common/configs/user/gui/theme/options.nix +++ b/hosts/common/configs/user/gui/theme/options.nix @@ -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";