move stretchly config from user to profile

This commit is contained in:
Infinidoge 2021-10-15 10:20:33 -04:00
parent 65899f0f9c
commit 04673e9175
2 changed files with 8 additions and 7 deletions

View file

@ -35,11 +35,6 @@
source = ./config/doom;
target = "${config.xdg.configHome}/doom";
};
stretchly_config = {
source = ./config/stretchly.json;
target = "${config.xdg.configHome}/Stretchly/config.json";
};
};
packages = with pkgs; [

View file

@ -1,3 +1,9 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ stretchly ];
{ config, pkgs, ... }: {
home = {
packages = with pkgs; [ stretchly ];
file.stretchly_config = {
source = ./../infinidoge/config/stretchly.json;
target = "${config.xdg.configHome}/Stretchly/config.json";
};
};
}