dotfiles/modules/services/openconnect.nix

34 lines
804 B
Nix
Raw Permalink Normal View History

2022-07-15 13:11:54 +02:00
{ config
, lib
, ...
}:
2022-05-26 13:45:06 +02:00
2022-07-15 13:11:54 +02:00
with lib;
let
cfg = config.my.services.openconnect;
in
2022-05-26 13:45:06 +02:00
{
2022-10-15 20:00:09 +02:00
options.my.services.openconnect.enable = mkEnableOption "openconnect";
2022-07-15 13:11:54 +02:00
config = lib.mkIf cfg.enable {
networking.openconnect.interfaces = {
university = {
autoStart = false;
gateway = "vpn.uni-leipzig.de";
protocol = "anyconnect";
user = "mb18cele@uni-leipzig.de";
2023-09-10 15:07:55 +02:00
# NOTE: file content as follows:
2022-07-15 13:11:54 +02:00
# <my_password>
# "1-Standard-Uni" or "2-Spezial-Alles"
# Explanation:
# 1-Standard-Uni = Uni Dienste über VPN (Standard)
# 2-Spezial-Alles = Gesamter Datenverkehr über VPN (Spezial)
passwordFile = "/run/agenix/uniVPN";
};
};
age.secrets.uniVPN = {
file = ../../secrets/uni-vpn.age;
};
2022-05-26 13:45:06 +02:00
};
}