blob: 83263bac30f18c29af4b17ddba6e4dac36c0d4a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ 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 = {
nix.settings.experimental-features = [ "nix-command" "flakes" ];
networking.hostName = cfg.hostname;
networking.hostId = cfg.id;
};
}
|