diff options
Diffstat (limited to 'host/Rory-synapse/configuration.nix')
-rwxr-xr-x | host/Rory-synapse/configuration.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/host/Rory-synapse/configuration.nix b/host/Rory-synapse/configuration.nix deleted file mode 100755 index 020a804..0000000 --- a/host/Rory-synapse/configuration.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ config, pkgs, lib, ... }: - -{ - imports = - [ - ../../modules/base-server.nix - ./software.nix - ]; - - networking = { - hostName = "Rory-synapse"; - interfaces.ens18.ipv4.addresses = [ { - address = "192.168.1.5"; - prefixLength = 24; - } ]; - interfaces.ens19.ipv4.addresses = [ { - address = "10.10.10.5"; - prefixLength = 16; - } ]; - }; - - system.stateVersion = "22.11"; # DO NOT EDIT! -} - |