diff options
Diffstat (limited to 'Biz/Cloud')
-rw-r--r-- | Biz/Cloud/Comms.nix | 2 | ||||
-rw-r--r-- | Biz/Cloud/Comms/Jitsi.nix | 2 | ||||
-rw-r--r-- | Biz/Cloud/Comms/Mumble.nix | 2 | ||||
-rw-r--r-- | Biz/Cloud/NostrRelay.nix | 2 | ||||
-rw-r--r-- | Biz/Cloud/Web.nix | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Biz/Cloud/Comms.nix b/Biz/Cloud/Comms.nix index 64fe7c7..700296d 100644 --- a/Biz/Cloud/Comms.nix +++ b/Biz/Cloud/Comms.nix @@ -1,4 +1,4 @@ -{ pkgs, config, ... }: +{ ... }: { imports = [ diff --git a/Biz/Cloud/Comms/Jitsi.nix b/Biz/Cloud/Comms/Jitsi.nix index 30e6b44..17aeced 100644 --- a/Biz/Cloud/Comms/Jitsi.nix +++ b/Biz/Cloud/Comms/Jitsi.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, ... }: { services.jitsi-meet = { diff --git a/Biz/Cloud/Comms/Mumble.nix b/Biz/Cloud/Comms/Mumble.nix index fed305e..d728a07 100644 --- a/Biz/Cloud/Comms/Mumble.nix +++ b/Biz/Cloud/Comms/Mumble.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, ... }: # mumble and related services let diff --git a/Biz/Cloud/NostrRelay.nix b/Biz/Cloud/NostrRelay.nix index d8ffd3a..73c1366 100644 --- a/Biz/Cloud/NostrRelay.nix +++ b/Biz/Cloud/NostrRelay.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, ... }: +{ config, pkgs, ... }: let ports = import ./Ports.nix; diff --git a/Biz/Cloud/Web.nix b/Biz/Cloud/Web.nix index 3afc2ae..913bded 100644 --- a/Biz/Cloud/Web.nix +++ b/Biz/Cloud/Web.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, ... }: let rootDomain = config.networking.domain; |