forked from dan/liminix
ppoe structured options are optional
This commit is contained in:
parent
985df8792d
commit
5db9d7269e
@ -13,7 +13,11 @@ let
|
|||||||
inherit (lib) mkOption types;
|
inherit (lib) mkOption types;
|
||||||
inherit (pkgs) liminix;
|
inherit (pkgs) liminix;
|
||||||
mkStringOption =
|
mkStringOption =
|
||||||
description: mkOption { type = types.str; inherit description; };
|
description: mkOption {
|
||||||
|
type = types.nullOr types.str;
|
||||||
|
default = null;
|
||||||
|
inherit description;
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
system.service.pppoe = mkOption {
|
system.service.pppoe = mkOption {
|
||||||
|
Loading…
Reference in New Issue
Block a user