style: format tree
This commit is contained in:
@@ -1,29 +1,32 @@
|
||||
{
|
||||
description = "PoC SP module for OpenConnect VPN server (ocserv)";
|
||||
|
||||
outputs = { self }: {
|
||||
nixosModules.default = import ./module.nix;
|
||||
configPathsNeeded =
|
||||
builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
||||
meta = { lib, ... }: {
|
||||
spModuleSchemaVersion = 1;
|
||||
id = "ocserv";
|
||||
name = "OpenConnect VPN";
|
||||
description = "OpenConnect VPN to connect your devices and access the internet.";
|
||||
svgIcon = builtins.readFile ./icon.svg;
|
||||
isMovable = false;
|
||||
isRequired = false;
|
||||
canBeBackedUp = false;
|
||||
backupDescription = "Backups are not available for OpenConnect VPN.";
|
||||
systemdServices = [
|
||||
"ocserv.service"
|
||||
];
|
||||
license = [
|
||||
lib.licenses.gpl2Plus
|
||||
];
|
||||
homepage = "https://gitlab.com/openconnect/ocserv";
|
||||
sourcePage = "https://gitlab.com/openconnect/ocserv";
|
||||
supportLevel = "deprecated";
|
||||
outputs =
|
||||
{ self }:
|
||||
{
|
||||
nixosModules.default = import ./module.nix;
|
||||
configPathsNeeded = builtins.fromJSON (builtins.readFile ./config-paths-needed.json);
|
||||
meta =
|
||||
{ lib, ... }:
|
||||
{
|
||||
spModuleSchemaVersion = 1;
|
||||
id = "ocserv";
|
||||
name = "OpenConnect VPN";
|
||||
description = "OpenConnect VPN to connect your devices and access the internet.";
|
||||
svgIcon = builtins.readFile ./icon.svg;
|
||||
isMovable = false;
|
||||
isRequired = false;
|
||||
canBeBackedUp = false;
|
||||
backupDescription = "Backups are not available for OpenConnect VPN.";
|
||||
systemdServices = [
|
||||
"ocserv.service"
|
||||
];
|
||||
license = [
|
||||
lib.licenses.gpl2Plus
|
||||
];
|
||||
homepage = "https://gitlab.com/openconnect/ocserv";
|
||||
sourcePage = "https://gitlab.com/openconnect/ocserv";
|
||||
supportLevel = "deprecated";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user