From 4fbce19a7a9647154a35f0e856d52171c41e14a4 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 30 May 2020 00:38:23 +0200 Subject: [PATCH] remove deprecated flake edition --- example/flake.nix | 5 +---- flake.nix | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) 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 ./.; };