commit 1b7ba804c344cfe7c2136403db47738b57414f4a
parent 3ad56943659b9d5e146b550bceb7d76bdadc0572
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sat, 7 May 2022 13:50:12 +0200
parent 3ad56943659b9d5e146b550bceb7d76bdadc0572
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sat, 7 May 2022 13:50:12 +0200
programs/cli/utilities: add phockup, mas
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/configurations/programs/cli/utilities.nix b/configurations/programs/cli/utilities.nix @@ -1,12 +1,16 @@ { pkgs, ... }: -{ +let + phockup = pkgs.callPackage ../../../pkgs/phockup.nix {}; + +in { home-manager.users.leah = { home = { packages = with pkgs; [ wget curl rsync + yt-dlp exa @@ -20,6 +24,8 @@ unzip smartmontools + + phockup ] ++ (if pkgs.stdenv.isLinux then [ niv @@ -29,7 +35,9 @@ lm_sensors gptfdisk - ] else []); + ] else [ + mas + ]); }; programs = {