lib: don't define defaults that require config

This commit is contained in:
tv 2016-10-13 21:49:04 +02:00
parent 1a5f52234e
commit b7cba02443
2 changed files with 1 additions and 13 deletions

View file

@ -19,7 +19,6 @@ let out = lib // rec {
]));
types = import ./types.nix {
inherit config;
lib = lib // { inherit genid optionalTrace; };
};

View file

@ -1,14 +1,9 @@
{ config, lib, ... }:
{ lib, ... }:
with builtins;
with lib;
with types;
let
# Inherited attributes are used in submodules that have their own `config`.
inherit (config.krebs) build users;
in
types // rec {
host = submodule ({ config, ... }: {
@ -27,7 +22,6 @@ types // rec {
owner = mkOption {
type = user;
default = users.krebs;
};
extraZones = mkOption {
@ -49,10 +43,6 @@ types // rec {
ssh.pubkey = mkOption {
type = nullOr ssh-pubkey;
default = null;
apply = x:
optionalTrace (x == null && config.owner.name == build.user.name)
"The option `krebs.hosts.${config.name}.ssh.pubkey' is unused."
x;
};
ssh.privkey = mkOption {
type = nullOr ssh-privkey;
@ -187,7 +177,6 @@ types // rec {
};
owner = mkOption {
type = user;
default = users.root;
};
group-name = mkOption {
type = str;