diff options
author | Karel Kočí <cynerd@email.cz> | 2022-10-20 11:14:12 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-10-20 11:14:12 +0200 |
commit | 79a8a7c26df6b854ec9973f42a1aa0a9dd222c3e (patch) | |
tree | 15156e6cfd87bc150f80d6f4a92e732db4b96f5b /pkgs | |
parent | ad84020ba4c3dc60ac9d4a28cd81a32576af5bb3 (diff) | |
download | nixos-personal-79a8a7c26df6b854ec9973f42a1aa0a9dd222c3e.tar.gz nixos-personal-79a8a7c26df6b854ec9973f42a1aa0a9dd222c3e.tar.bz2 nixos-personal-79a8a7c26df6b854ec9973f42a1aa0a9dd222c3e.zip |
mrpump: tweak gitlab runner
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix index 56f23cc..e2363b0 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,10 +1,9 @@ { self, nixpkgs }: let - pkgs = nixpkgs // personalpkgs; - callPackage = nixpkgs.lib.callPackageWith pkgs; + callPackage = nixpkgs.newScope personalpkgs; - personalpkgs = with pkgs; { + personalpkgs = rec { luks-hw-password = callPackage ./luks-hw-password { }; @@ -22,11 +21,11 @@ let sdcv = callPackage ./stardict/wrapper.nix { stardict = sdcv-unwrapped; }; # Package to be installed to the user's profile - cynerd-profile = pkgs.symlinkJoin { + cynerd-profile = nixpkgs.symlinkJoin { name = "cynerd-profile"; - paths = with pkgs; [ + paths = [ self.inputs.shellrc.packages.${nixpkgs.system}.default - tig + nixpkgs.tig ]; }; |