From e3eb7fdf8d129ff3676dfbc84ee1262322ca6fb4 Mon Sep 17 00:00:00 2001 From: Daniel Thwaites Date: Thu, 26 Sep 2024 15:57:23 +0100 Subject: [PATCH] vesktop: replace home.file with xdg.configFile (#575) Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> --- modules/vesktop/hm.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/vesktop/hm.nix b/modules/vesktop/hm.nix index 81241a734..6ffdb68f8 100644 --- a/modules/vesktop/hm.nix +++ b/modules/vesktop/hm.nix @@ -9,8 +9,6 @@ in options.stylix.targets.vesktop.enable = config.lib.stylix.mkEnableTarget "Vesktop" true; config = lib.mkIf (config.stylix.enable && config.stylix.targets.vesktop.enable) { - home.file."${config.xdg.configHome}/vesktop/themes/stylix.theme.css" = { - source = themeFile; - }; + xdg.configFile."vesktop/themes/stylix.theme.css".source = themeFile; }; }