From 033b9f258ca96a10e543d4442071f614dc3f8412 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 9 Apr 2023 12:49:34 +0200 Subject: [PATCH] clean flake check warnings --- README.md | 11 ----------- flake.nix | 2 +- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/README.md b/README.md index 2027cfd..8519d5f 100644 --- a/README.md +++ b/README.md @@ -168,14 +168,3 @@ Here is how it looks like in practice: }; } ``` - -## Known issues - -``` -$ nix flake check -warning: unknown flake output 'lib' -``` - -nixpkgs is currently having the same issue so I assume that it will be -eventually standardized. - diff --git a/flake.nix b/flake.nix index 34afb1a..7fe2e59 100644 --- a/flake.nix +++ b/flake.nix @@ -9,6 +9,7 @@ defaultSystems = import systems; }; templates = { + default = self.templates.each-system; simple-flake = { path = ./examples/simple-flake; description = "A flake using flake-utils.lib.simpleFlake"; @@ -22,6 +23,5 @@ description = "A flake with tests"; }; }; - defaultTemplate = self.templates.each-system; }; }