diff options
author | ene <ene@sils.li> | 2023-02-04 21:37:52 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-04 21:44:35 +0100 |
commit | cdbd9f7f83099a48bfa59a886b6e51790d898a24 (patch) | |
tree | cffd2aede95072613ba407734995321387ade392 /hosts | |
parent | Feat: Imported the headless profile (diff) | |
download | nixos-server-cdbd9f7f83099a48bfa59a886b6e51790d898a24.tar.gz nixos-server-cdbd9f7f83099a48bfa59a886b6e51790d898a24.zip |
Flake: Changed the configuration to a flake
Nix flakes make a lot of things very easy.
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/vhack.eu/configuration.nix | 25 | ||||
-rw-r--r-- | hosts/vhack.eu/networking.nix | 49 |
2 files changed, 74 insertions, 0 deletions
diff --git a/hosts/vhack.eu/configuration.nix b/hosts/vhack.eu/configuration.nix new file mode 100644 index 0000000..a58e58d --- /dev/null +++ b/hosts/vhack.eu/configuration.nix @@ -0,0 +1,25 @@ +{pkgs, ...}: { + imports = [ + ./networking.nix # network configuration that just works + + ../../system/hardware.nix + ../../system/fileSystemLayouts.nix + ../../system/packages.nix + ../../system/users.nix + + ../../services/minecraft.nix + ../../services/rust-motd.nix + ../../services/opensshd.nix + ]; + + boot.cleanTmpDir = true; + zramSwap.enable = true; + networking.hostName = "server1"; + networking.domain = "vhack.eu"; + + system.fileSystemLayouts.mainDisk = "/dev/vda3"; + + system.stateVersion = "22.11"; +} +# vim: ts=2 + diff --git a/hosts/vhack.eu/networking.nix b/hosts/vhack.eu/networking.nix new file mode 100644 index 0000000..26d6719 --- /dev/null +++ b/hosts/vhack.eu/networking.nix @@ -0,0 +1,49 @@ +{lib, ...}: { + # This file was populated at runtime with the networking + # details gathered from the active system. + networking = { + nameservers = [ + "8.8.8.8" + ]; + defaultGateway = "89.58.56.1"; + defaultGateway6 = "fe80::1"; + dhcpcd.enable = false; + usePredictableInterfaceNames = lib.mkForce false; + interfaces = { + eth0 = { + ipv4.addresses = [ + { + address = "89.58.58.33"; + prefixLength = 22; + } + ]; + ipv6.addresses = [ + { + address = "2a03:4000:6a:3f3:6422:6dff:fe82:939b"; + prefixLength = 64; + } + { + address = "fe80::6422:6dff:fe82:939b"; + prefixLength = 64; + } + ]; + ipv4.routes = [ + { + address = "89.58.56.1"; + prefixLength = 32; + } + ]; + ipv6.routes = [ + { + address = "fe80::1"; + prefixLength = 128; + } + ]; + }; + }; + }; + services.udev.extraRules = '' + ATTR{address}=="66:22:6d:82:93:9b", NAME="eth0" + + ''; +} |