clean flake check warnings

This commit is contained in:
zimbatm 2023-04-09 12:49:34 +02:00
parent 2f02e38dfa
commit 033b9f258c
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7
2 changed files with 1 additions and 12 deletions

View File

@ -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.

View File

@ -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;
};
}