summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-04-10 10:24:09 +0200
committerEelco Dolstra <edolstra@gmail.com>2020-04-10 10:24:09 +0200
commite5ea01c1a8bbd328dcc576928bf3e4271cb55399 (patch)
tree988accdc0e9ad763ea6b3c24df12154a286e1a55 /flake.nix
parent3aaceeb7e2d3fb8a07a1aa5a21df1dca6bbaa0ef (diff)
Remove flake 'edition' field
Future editions of flakes or the Nix language can be supported by renaming flake.nix (e.g. flake-v2.nix). This avoids a bootstrap problem where we don't know which grammar to use to parse flake*.nix. It also allows a project to support multiple flake editions, in theory.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index ffd8b5b9a..16df0833b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,7 +1,7 @@
{
description = "The purely functional package manager";
- edition = 201909;
+ edition = 201909; # FIXME: remove
inputs.nixpkgs.uri = "nixpkgs/nixos-20.03-small";