Update Cfg and add proxy/wsl

This commit is contained in:
soraefir
2026-05-30 17:48:18 +02:00
parent d9e7775afc
commit 4217227070
18 changed files with 136 additions and 20 deletions

View File

@@ -0,0 +1,11 @@
{ lib,... }:
with lib; {
wsl = mkOption { type = types.bool; default = false; };
hosts = mkOption { type = types.listOf (types.str); default = []; };
proxy = {
domain = mkOption { type = types.str; default = ""; };
port = mkOption { type = types.str; default = ""; };
noProxy = mkOption { type = types.str; default = ""; };
cert = mkOption { type = types.path; default = null; };
};
}