refactor: separate config var from hm config var

This commit is contained in:
Infinidoge 2021-09-26 16:36:53 -04:00
parent 2001c40b11
commit a4a03a1fef

View file

@ -3,7 +3,7 @@
suites = with suites; [ develop ]; suites = with suites; [ develop ];
}; };
home-manager.users.infinidoge = { config, suites, profiles, ... }: { home-manager.users.infinidoge = { hconfig, suites, profiles, ... }: {
imports = test.flattenListSet { imports = test.flattenListSet {
suites = with suites; [ base ]; suites = with suites; [ base ];
}; };
@ -17,7 +17,7 @@
file = { file = {
qtile_config = { qtile_config = {
source = ./config/qtile.py; source = ./config/qtile.py;
target = "${config.xdg.configHome}/qtile/config.py"; target = "${hconfig.xdg.configHome}/qtile/config.py";
}; };
}; };