Merge pull request #3228 from Ma27/flake-fix-template

Fix attr path to nixpkgs flake in flake template
This commit is contained in:
Eelco Dolstra 2019-11-19 13:55:58 +01:00 committed by GitHub
commit 9b8cb6809b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@
outputs = { self, nixpkgs }: {
packages.x86_64-linux.hello = nixpkgs.packages.x86_64-linux.hello;
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
};
}