We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a835e2 commit bfc8c1aCopy full SHA for bfc8c1a
flake.nix
@@ -42,13 +42,15 @@
42
43
//
44
45
- lib.foldl' lib.recursiveUpdate {} (lib.forEach supportedSystems (system: rec {
+ lib.foldl' lib.recursiveUpdate {} (lib.forEach supportedSystems (system: {
46
47
- packages."${system}".nixos-shell = import ./default.nix {
48
- pkgs = inp.nixpkgs.legacyPackages."${system}";
49
- };
+ packages."${system}" = {
+ nixos-shell = import ./default.nix {
+ pkgs = inp.nixpkgs.legacyPackages."${system}";
50
+ };
51
- defaultPackage."${system}" = packages."${system}".nixos-shell;
52
+ default = inp.self.packages."${system}".nixos-shell;
53
54
55
}));
56
}
0 commit comments