diff --git a/example/flake.nix b/example/flake.nix index 0fb49e7..c6692bf 100644 --- a/example/flake.nix +++ b/example/flake.nix @@ -1,10 +1,7 @@ { description = "Flake utils demo"; - edition = 201909; - inputs.utils = { - uri = "github:numtide/flake-utils"; - }; + inputs.utils.uri = "github:numtide/flake-utils"; outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system: diff --git a/flake.nix b/flake.nix index b565074..2d1646b 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,5 @@ { description = "Pure Nix flake utility functions"; - edition = 201909; outputs = { self }: { lib = import ./.; };