users/infinidoge(refactor): move config definitions
This commit is contained in:
parent
81d78c0168
commit
2d81e0a76f
2 changed files with 16 additions and 11 deletions
14
users/infinidoge/config/default.nix
Normal file
14
users/infinidoge/config/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ config, ... }: {
|
||||||
|
xdg.configFile = {
|
||||||
|
"qtile".source = ./qtile;
|
||||||
|
|
||||||
|
"doom" = {
|
||||||
|
source = ./doom;
|
||||||
|
onChange = ''
|
||||||
|
${config.xdg.configHome}/emacs/bin/doom sync -p
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
"blugon".source = ./blugon;
|
||||||
|
};
|
||||||
|
}
|
|
@ -25,6 +25,8 @@ in
|
||||||
gaming
|
gaming
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
|
./config
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
@ -37,17 +39,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile = {
|
|
||||||
"qtile".source = ./config/qtile;
|
|
||||||
"doom" = {
|
|
||||||
source = ./config/doom;
|
|
||||||
onChange = ''
|
|
||||||
${config.xdg.configHome}/emacs/bin/doom sync -p
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
"blugon".source = ./config/blugon;
|
|
||||||
};
|
|
||||||
|
|
||||||
home.packages = with pkgs; lib.flatten [
|
home.packages = with pkgs; lib.flatten [
|
||||||
btrfs-progs
|
btrfs-progs
|
||||||
ncdu
|
ncdu
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue