depot/third_party/default.nix

16 lines
297 B
Nix
Raw Normal View History

{ ... }:
2020-05-31 17:58:29 +00:00
let nixpkgsConfig = {
allowUnfree = true;
permittedInsecurePackages = [
"p7zip-16.02"
];
}; in
{
2020-05-31 17:58:29 +00:00
inherit nixpkgsConfig;
nixpkgs = import ./nixpkgs {
config = nixpkgsConfig;
};
nixos = import ./nixpkgs/nixos;
nixeval = import ./nixpkgs/nixos/lib/eval-config.nix;
}