diff --git a/users/profiles/stretchly.nix b/users/profiles/stretchly.nix index 0db1f95..fcdb08a 100644 --- a/users/profiles/stretchly.nix +++ b/users/profiles/stretchly.nix @@ -1,9 +1,6 @@ { config, pkgs, ... }: { - home = { - packages = with pkgs; [ stretchly ]; - file.stretchly_config = { - source = ./../infinidoge/config/stretchly.json; - target = "${config.xdg.configHome}/Stretchly/config.json"; - }; - }; + home.packages = with pkgs; [ stretchly ]; + + xdg.configFile."Stretchly/config.json".source = + ./../infinidoge/config/stretchly.json; }