mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-12-26 14:14:58 +08:00
fix error with nix flake show
This commit is contained in:
parent
77c423a03b
commit
655b3e3a45
1 changed files with 4 additions and 1 deletions
|
|
@ -86,7 +86,10 @@
|
|||
packages-stable = import ./default.nix {
|
||||
pkgs = privateInputs.nixpkgs-stable.legacyPackages.${system};
|
||||
};
|
||||
dropOverride = attrs: nixpkgs.lib.removeAttrs attrs [ "override" ];
|
||||
dropOverride = attrs: nixpkgs.lib.removeAttrs attrs [
|
||||
"override"
|
||||
"overrideDerivation"
|
||||
];
|
||||
tests = dropOverride (pkgs.callPackage ./checks/nixos-test.nix { });
|
||||
tests-stable = dropOverride (
|
||||
privateInputs.nixpkgs-stable.legacyPackages.${system}.callPackage ./checks/nixos-test.nix { }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue