diff options
author | Rory& <root@rory.gay> | 2024-07-04 14:59:36 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-07-04 14:59:36 +0200 |
commit | dd7b872694441a96b8b042ccbc4b63a96d0b89b9 (patch) | |
tree | 76a25875e08415c38cdb7b5ad8f93241b387d078 /host/Rory-fosscord/configuration.nix | |
parent | Update flake inputs (diff) | |
download | Rory-Open-Architecture-dd7b872694441a96b8b042ccbc4b63a96d0b89b9.tar.xz |
Nixfmt
Diffstat (limited to 'host/Rory-fosscord/configuration.nix')
-rwxr-xr-x | host/Rory-fosscord/configuration.nix | 38 |
1 files changed, 23 insertions, 15 deletions
diff --git a/host/Rory-fosscord/configuration.nix b/host/Rory-fosscord/configuration.nix index 84c997e..ce93fc2 100755 --- a/host/Rory-fosscord/configuration.nix +++ b/host/Rory-fosscord/configuration.nix @@ -1,24 +1,32 @@ -{ config, pkgs, lib, discord-client-proxy, ... }: +{ + config, + pkgs, + lib, + discord-client-proxy, + ... +}: { - imports = - [ - ../../modules/base-server.nix - ./software.nix - ]; + imports = [ + ../../modules/base-server.nix + ./software.nix + ]; networking = { hostName = "Rory-fosscord"; - interfaces.ens18.ipv4.addresses = [ { - address = "192.168.1.100"; - prefixLength = 24; - } ]; - interfaces.ens19.ipv4.addresses = [ { - address = "10.10.10.100"; - prefixLength = 16; - } ]; + interfaces.ens18.ipv4.addresses = [ + { + address = "192.168.1.100"; + prefixLength = 24; + } + ]; + interfaces.ens19.ipv4.addresses = [ + { + address = "10.10.10.100"; + prefixLength = 16; + } + ]; }; system.stateVersion = "22.11"; # DO NOT EDIT! } - |