We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b4d98 commit a97445cCopy full SHA for a97445c
flake.nix
@@ -2,5 +2,20 @@
2
description = "Pure Nix flake utility functions";
3
outputs = { self }: {
4
lib = import ./.;
5
+ templates = {
6
+ simple-flake = {
7
+ path = ./examples/simple-flake;
8
+ description = "A flake using flake-utils.lib.simpleFlake";
9
+ };
10
+ each-system = {
11
+ path = ./examples/each-system;
12
+ description = "A flake using flake-utils.lib.eachDefaultSystem";
13
14
+ check-utils = {
15
+ path = ./examples/check-utils;
16
+ description = "A flake with tests";
17
18
19
+ defaultTemplate = self.templates.each-system;
20
};
21
}
0 commit comments