diff --git a/modules/home/imv.nix b/modules/home/imv.nix new file mode 100644 index 0000000..0d69bfe --- /dev/null +++ b/modules/home/imv.nix @@ -0,0 +1,5 @@ +_: { + programs.imv = { + enable = true; + }; +} diff --git a/nixos/default.nix b/nixos/default.nix index cc46503..9d73637 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -64,13 +64,18 @@ home.stateVersion = stateVersion; programs.home-manager.enable = true; imports = [ - ../modules/home/desktop - ../modules/home/webcord.nix ../modules/home/cli - ../modules/home/firefox - ../modules/home/foot.nix - ../modules/home/zathura.nix - ] ++ ( + ] ++ (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 + ] + else [] + ) ++ ( if hostConfig.gaming then [ ../modules/home/lutris.nix ] else []