nixos/openconnect: fix null cases for user and passwordFile options

This commit is contained in:
alyaeanyx 2022-12-29 09:43:16 +01:00 committed by Bjørn Forsman
parent dd6e0ab1cf
commit ebe0608ada

View file

@ -32,6 +32,7 @@ let
description = lib.mdDoc "Username to authenticate with.";
example = "example-user";
type = types.nullOr types.str;
default = null;
};
# Note: It does not make sense to provide a way to declaratively
@ -108,7 +109,7 @@ let
ExecStart = "${openconnect}/bin/openconnect --config=${
generateConfig name icfg
} ${icfg.gateway}";
StandardInput = "file:${icfg.passwordFile}";
StandardInput = lib.mkIf (icfg.passwordFile != null) "file:${icfg.passwordFile}";
ProtectHome = true;
};