commit d1b67be5ecf55361cf0fadce519d0ea1aacbf339
parent b3501d2494a817f4acdc05971ff0ee5c656722d4
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sat, 21 May 2022 11:22:38 +0200
parent b3501d2494a817f4acdc05971ff0ee5c656722d4
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sat, 21 May 2022 11:22:38 +0200
programs/cli/utilities: use `nix` from unstable nixpkgs on darwin
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/configurations/programs/cli/utilities.nix b/configurations/programs/cli/utilities.nix @@ -1,7 +1,8 @@ { pkgs, ... }: let - phockup = pkgs.callPackage ../../../pkgs/phockup.nix {}; + pkgsUnstable = import <nixpkgsUnstable> {}; + phockup = pkgs.callPackage ../../../pkgs/phockup.nix {}; in { home-manager.users.leah = { @@ -39,6 +40,7 @@ in { gptfdisk ] else [ + pkgsUnstable.niv mas ]); };