aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-11-19 13:55:58 +0100
committerGitHub <noreply@github.com>2019-11-19 13:55:58 +0100
commit9b8cb6809ba0c17d9d25d7baee9b12496af091cf (patch)
treea6a2176d6a1dfff8c8bec5dbdb3cd7231ed5732a
parent8d2eb1ff56ad17fe20e7f42a2e4b9b790640e806 (diff)
parentb8bddb63e68c727b9e5e06fab605a6c233acfcd9 (diff)
Merge pull request #3228 from Ma27/flake-fix-template
Fix attr path to nixpkgs flake in flake template
-rw-r--r--src/nix/flake-template.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/flake-template.nix b/src/nix/flake-template.nix
index eb8eb14fc..321961013 100644
--- a/src/nix/flake-template.nix
+++ b/src/nix/flake-template.nix
@@ -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;
};
}