Fix the flakes init test

Things leading to another...
This commit is contained in:
Théophane Hufschmitt 2023-01-30 11:21:52 +01:00
parent bc6e65e26f
commit 3ac9f1658a

View file

@ -41,8 +41,8 @@ cat > $templatesDir/trivial/flake.nix <<EOF
description = "A flake for building Hello World";
outputs = { self, nixpkgs }: {
packages.x86_64-linux = rec {
hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.$system = rec {
hello = nixpkgs.legacyPackages.$system.hello;
default = hello;
};
};