mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 15:11:34 +01:00
Don't use internal for options
This commit is contained in:
parent
4f5db50ca1
commit
08fc6f4937
2 changed files with 0 additions and 3 deletions
|
|
@ -12,7 +12,6 @@ in
|
||||||
list = lib.mkOption {
|
list = lib.mkOption {
|
||||||
type = lib.types.listOf lib.types.nonEmptyStr;
|
type = lib.types.listOf lib.types.nonEmptyStr;
|
||||||
default = [ ];
|
default = [ ];
|
||||||
internal = true;
|
|
||||||
};
|
};
|
||||||
globalList = lib.mkOption {
|
globalList = lib.mkOption {
|
||||||
type = lib.types.listOf lib.types.nonEmptyStr;
|
type = lib.types.listOf lib.types.nonEmptyStr;
|
||||||
|
|
@ -20,7 +19,6 @@ in
|
||||||
self.nixosConfigurations
|
self.nixosConfigurations
|
||||||
|> lib.mapAttrsToList (_: value: value.config.meta.domains.list)
|
|> lib.mapAttrsToList (_: value: value.config.meta.domains.list)
|
||||||
|> lib.concatLists;
|
|> lib.concatLists;
|
||||||
internal = true;
|
|
||||||
readOnly = true;
|
readOnly = true;
|
||||||
};
|
};
|
||||||
assertUnique = lib.mkEnableOption "" // {
|
assertUnique = lib.mkEnableOption "" // {
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,6 @@ in
|
||||||
list = lib.mkOption {
|
list = lib.mkOption {
|
||||||
type = lib.types.listOf lib.types.port;
|
type = lib.types.listOf lib.types.port;
|
||||||
default = [ ];
|
default = [ ];
|
||||||
internal = true;
|
|
||||||
};
|
};
|
||||||
assertUnique = lib.mkEnableOption "" // {
|
assertUnique = lib.mkEnableOption "" // {
|
||||||
default = true;
|
default = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue