File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 24
24
./examples/flake-module.nix
25
25
./devShells/flake-module.nix
26
26
./nixosModules/flake-module.nix
27
+ ./nix/flake-module.nix
27
28
./checks/flake-module.nix
28
29
./packages/flake-module.nix
29
30
]
38
39
"aarch64-linux"
39
40
"aarch64-darwin"
40
41
] ;
41
-
42
42
} ;
43
43
}
Original file line number Diff line number Diff line change
1
+ {
2
+ flake = {
3
+ lib = import ./lib.nix ;
4
+ } ;
5
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ /**
3
+ Marks a string as a value that will be interpolated on the buildbot master or worker.
4
+
5
+ See https://docs.buildbot.net/latest/manual/configuration/properties.html#interpolate
6
+ for details on the semantics of the interpolation format string.
7
+
8
+ Note that the `kw` selector (and passing keyword arguments) is not supported.
9
+
10
+ # Type
11
+ ```
12
+ interpolate :: String -> InterpolateString
13
+ ```
14
+
15
+ # Arguments
16
+
17
+ value
18
+ : The interpolation format string.
19
+ */
20
+ interpolate = value : {
21
+ _type = "interpolate" ;
22
+ inherit value ;
23
+ } ;
24
+ }
You can’t perform that action at this time.
0 commit comments