From b95b0f8ee7750128d2bfe6b0c8b785282ddff3c2 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sat, 9 Sep 2023 22:27:52 +0200 Subject: [PATCH] Add imv --- modules/home/imv.nix | 5 +++++ nixos/default.nix | 1 + 2 files changed, 6 insertions(+) create mode 100644 modules/home/imv.nix 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..a21e7f6 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -70,6 +70,7 @@ ../modules/home/firefox ../modules/home/foot.nix ../modules/home/zathura.nix + ../modules/home/imv.nix ] ++ ( if hostConfig.gaming then [ ../modules/home/lutris.nix ]