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;
programs.home-manager.enable = true;
imports = [
../modules/home/cli
../home-manager/cli
] ++ (if hostConfig.desktop then
[
../modules/home/desktop
../modules/home/webcord.nix
../modules/home/firefox
../modules/home/foot.nix
../modules/home/zathura.nix
../modules/home/imv.nix
../home-manager/desktop
../home-manager/webcord.nix
../home-manager/firefox
../home-manager/foot.nix
../home-manager/zathura.nix
../home-manager/imv.nix
]
else []
) ++ (
if hostConfig.gaming then
[ ../modules/home/lutris.nix ]
[ ../home-manager/lutris.nix ]
else []
);
};