blob: a6a570befa5ef713b15f6ea34078469c0a74ce61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ options, config, lib, namespace, ... }:
with lib; with lib.${namespace}; let
cfg = config.${namespace}.system;
in {
options.${namespace}.system = with types; {
hostname = mkOption {
type = strMatching "^$|^[[:alnum:]]([[:alnum:]_-]{0,61}[[:alnum:]])?$";
};
id = mkOption {
default = null;
type = nullOr str;
};
};
config = {
networking.hostName = cfg.hostname;
networking.hostId = cfg.id;
};
}
|