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