summary refs log tree commit diff
path: root/host
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-05-20 16:04:57 +0200
committerRory& <root@rory.gay>2025-05-20 16:04:57 +0200
commit244005278f8746e75b06a39dbab64afd549fbc5f (patch)
tree0f816a44a4fc48ccf028af2d79032c1da4f7afb9 /host
parentFix synapse config (diff)
downloadRory-Open-Architecture-244005278f8746e75b06a39dbab64afd549fbc5f.tar.xz
Fix server config
Diffstat (limited to 'host')
-rwxr-xr-xhost/Rory-ovh/configuration.nix29
1 files changed, 20 insertions, 9 deletions
diff --git a/host/Rory-ovh/configuration.nix b/host/Rory-ovh/configuration.nix

index 6be6b1f..7efa89b 100755 --- a/host/Rory-ovh/configuration.nix +++ b/host/Rory-ovh/configuration.nix
@@ -1,11 +1,8 @@ { pkgs, - config, lib, - grapevine, - conduit, - conduwuit, nixpkgs-Draupnir, + nixpkgs-DraupnirPkg, ... }: @@ -55,7 +52,12 @@ name = "enp98s0f0"; DHCP = "no"; #gateway = [ "51.210.113.254" ]; - routes = [ { Gateway = "51.210.113.254"; GatewayOnLink = true; } ]; + routes = [ + { + Gateway = "51.210.113.254"; + GatewayOnLink = true; + } + ]; address = [ "51.210.113.110/32" ]; }; }; @@ -79,19 +81,28 @@ services.irqbalance.enable = true; environment.memoryAllocator.provider = "jemalloc"; - + containers."draupnir-cme" = import ./services/containers/draupnir-cme/container.nix { - inherit pkgs lib nixpkgs-Draupnir; + inherit + pkgs + lib + nixpkgs-Draupnir + nixpkgs-DraupnirPkg + ; }; containers."draupnir-fedora" = import ./services/containers/draupnir-fedora/container.nix { - inherit pkgs lib nixpkgs-Draupnir; + inherit + pkgs + lib + nixpkgs-Draupnir + nixpkgs-DraupnirPkg + ; }; system.stateVersion = "22.11"; # DO NOT EDIT! environment.systemPackages = with pkgs; [ waypipe ]; - nix.nrBuildUsers = 128; services.owncast = { enable = true;