Move home-manager configurations files

This commit is contained in:
Yorick Barbanneau 2023-09-10 15:53:24 +02:00
parent 9715b9569a
commit 1650bdc29b
37 changed files with 8 additions and 8 deletions

View file

@ -65,20 +65,20 @@
home.stateVersion = stateVersion; home.stateVersion = stateVersion;
programs.home-manager.enable = true; programs.home-manager.enable = true;
imports = [ imports = [
../modules/home/cli ../home-manager/cli
] ++ (if hostConfig.desktop then ] ++ (if hostConfig.desktop then
[ [
../modules/home/desktop ../home-manager/desktop
../modules/home/webcord.nix ../home-manager/webcord.nix
../modules/home/firefox ../home-manager/firefox
../modules/home/foot.nix ../home-manager/foot.nix
../modules/home/zathura.nix ../home-manager/zathura.nix
../modules/home/imv.nix ../home-manager/imv.nix
] ]
else [] else []
) ++ ( ) ++ (
if hostConfig.gaming then if hostConfig.gaming then
[ ../modules/home/lutris.nix ] [ ../home-manager/lutris.nix ]
else [] else []
); );
}; };