blob: 976d378f98679ff9bc99f81dd21a6254dead3722 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ config, ... }:
with import <stockholm/lib>;
{
options.krebs.build = {
# TODO deprecate krebs.build.host
host = mkOption {
type = types.host;
};
profile = mkOption {
type = types.absolute-path;
default = "/nix/var/nix/profiles/system";
};
source = mkOption {
type = types.attrsOf types.source;
default = {};
};
# TODO deprecate krebs.build.user
user = mkOption {
type = types.user;
};
};
config.krebs.build.source.stockholm.file = mkDefault (toString <stockholm>);
}
|