X-Git-Url: http://git.scottworley.com/auto-upgrade-with-pinch/blobdiff_plain/2b0f916a012aa10c4e9cee4958d5e2409f538065..a811aa4a1c703ab559390310e21cab7625b8b947:/default.nix?ds=inline diff --git a/default.nix b/default.nix index 8dd9a56..348ba97 100644 --- a/default.nix +++ b/default.nix @@ -1,5 +1,13 @@ -# When installed as a channel, this is not an environment. -# -# This file exists to stop getAllExprs() in nix/src/nix-env/nix-env.cc from recursing around in here and getting confused. +{ + pkgs ? import { }, +}: -{} +pkgs.lib.makeScope pkgs.newScope ( + self: with self; { + + homeless-gpg = callPackage ./pkgs/homeless-gpg.nix { }; + + keyed-gpg = callPackage ./pkgs/keyed-gpg.nix { }; + + } +)