commit 6cb3fec04b1c89a7f40aa8450604ab309b1818c4
parent dc2fee7ad2a8f1caeed65d5fe7748f8752bdd882
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sun, 10 Oct 2021 12:55:21 +0200
parent dc2fee7ad2a8f1caeed65d5fe7748f8752bdd882
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sun, 10 Oct 2021 12:55:21 +0200
programs/imv: add
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/configurations/desktop-sway.nix b/configurations/desktop-sway.nix @@ -54,6 +54,7 @@ ./programs/thunderbird.nix ./programs/mpv.nix + ./programs/imv.nix ./programs/thunar.nix ./programs/utilities.nix
diff --git a/configurations/programs/imv.nix b/configurations/programs/imv.nix @@ -0,0 +1,7 @@ +{ config, lib, pkgs, home-manager, ... }: + +{ + home-manager.users.leah = { + home.packages = [ pkgs.imv ]; + }; +}