Files
lix/tests/functional2/flakes/assets/simple-flake.nix
T
eldritch horrors 762a28a698 testing: migrate non-pty bits of flakes/show.sh
Change-Id: I4884fd34fa485f9f91281dc3efd69dedd3aad3d9
2026-02-17 16:00:59 +01:00

18 lines
342 B
Nix

{
description = "Bla bla";
outputs = inputs: rec {
packages.@system@ = rec {
foo = import ./simple.nix;
default = foo;
};
packages.someOtherSystem = rec {
foo = import ./simple.nix;
default = foo;
};
# To test "nix flake init".
legacyPackages.@system@.hello = import ./simple.nix;
};
}