this repo has no description

no comments.

Diogo 19def738 2ac46997

Changed files
+12 -19
hosts
modules
+2 -1
hosts/iris/networking.nix
··· 1 1 let 2 2 mainIf = "ens3"; 3 - in { 3 + in 4 + { 4 5 networking = { 5 6 useDHCP = false; 6 7
+2 -4
modules/nixos/services/asf.nix
··· 11 11 cfg = config.sys.services.asf; 12 12 in 13 13 { 14 - options = { 15 - sys.services.asf = mkServiceOption "asf" { 16 - port = 1242; 17 - }; 14 + options.sys.services.asf = mkServiceOption "asf" { 15 + port = 1242; 18 16 }; 19 17 20 18 config = mkIf cfg.enable {
+2 -4
modules/nixos/services/caddy.nix
··· 11 11 cfg = config.sys.services.caddy; 12 12 in 13 13 { 14 - options = { 15 - sys.services.caddy = mkServiceOption "caddy" { 16 - domain = "diogocastro.net"; 17 - }; 14 + options.sys.services.caddy = mkServiceOption "caddy" { 15 + domain = "diogocastro.net"; 18 16 }; 19 17 20 18 config = mkIf cfg.enable {
+3 -5
modules/nixos/services/open-webui.nix
··· 12 12 cfg = config.sys.services.open-webui; 13 13 in 14 14 { 15 - options = { 16 - sys.services.open-webui = mkServiceOption "open-webui" { 17 - domain = "ai.${config.networking.domain}"; 18 - port = 1422; 19 - }; 15 + options.sys.services.open-webui = mkServiceOption "open-webui" { 16 + domain = "ai.${config.networking.domain}"; 17 + port = 1422; 20 18 }; 21 19 22 20 config = mkIf cfg.enable {
+3 -5
modules/nixos/services/pocket-id.nix
··· 11 11 cfg = config.sys.services.pocket-id; 12 12 in 13 13 { 14 - options = { 15 - sys.services.pocket-id = mkServiceOption "pocket-id" { 16 - domain = "sso.${config.networking.domain}"; 17 - port = 1411; 18 - }; 14 + options.sys.services.pocket-id = mkServiceOption "pocket-id" { 15 + domain = "sso.diogo.fi"; 16 + port = 1411; 19 17 }; 20 18 21 19 config = mkIf cfg.enable {