aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/server1
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-12-25 18:25:51 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-12-25 18:25:51 +0100
commitd9ab6c7ea59d29af3ae8c29c7367fe0e8808f5db (patch)
tree4076dca44feeb7fccf90af3f9c9cc6e73b845c6f /hosts/server1
parentfix(treewide): Add constant uids and gids to each user and group (diff)
downloadnixos-server-d9ab6c7ea59d29af3ae8c29c7367fe0e8808f5db.zip
refactor(hosts): Use a `by-name` structure and construct all host depended values
This allows us to outsource the host-handling from the `flake.nix` file.
Diffstat (limited to 'hosts/server1')
-rw-r--r--hosts/server1/configuration.nix34
-rw-r--r--hosts/server1/hardware.nix14
-rw-r--r--hosts/server1/networking.nix50
3 files changed, 0 insertions, 98 deletions
diff --git a/hosts/server1/configuration.nix b/hosts/server1/configuration.nix
deleted file mode 100644
index e21327e..0000000
--- a/hosts/server1/configuration.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{config, ...}: {
- imports = [
- ./networking.nix # network configuration that just works
- ./hardware.nix
-
- ../../system
- ];
-
- vhack = {
- back = {
- enable = true;
- repositories = {
- "${config.services.gitolite.dataDir}/vhack.eu/nixos-config.git" = {
- domain = "issues.vhack.eu";
- port = 9220;
- };
- };
- };
- etesync.enable = true;
- git-server.enable = true;
- nginx.enable = true;
- nix-sync.enable = true;
- openssh.enable = true;
- peertube.enable = true;
- redlib.enable = true;
- };
-
- boot.tmp.cleanOnBoot = true;
- zramSwap.enable = true;
- networking.hostName = "server1";
- networking.domain = "vhack.eu";
-
- system.stateVersion = "22.11";
-}
diff --git a/hosts/server1/hardware.nix b/hosts/server1/hardware.nix
deleted file mode 100644
index 9abc64c..0000000
--- a/hosts/server1/hardware.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{modulesPath, ...}: {
- imports = [
- (modulesPath + "/profiles/qemu-guest.nix")
- (modulesPath + "/profiles/headless.nix")
- ];
-
- vhack.disko = {
- enable = true;
- # FIXME: Find a better way to specify the disk
- disk = "/dev/vda";
- };
- boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sr_mod" "virtio_blk"];
- boot.initrd.kernelModules = [];
-}
diff --git a/hosts/server1/networking.nix b/hosts/server1/networking.nix
deleted file mode 100644
index cd0484f..0000000
--- a/hosts/server1/networking.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{lib, ...}: {
- # This file was populated at runtime with the networking
- # details gathered from the active system.
- networking = {
- nameservers = [
- "8.8.8.8"
- ];
- defaultGateway = {
- address = "89.58.56.1";
- interface = "eth0";
- };
- defaultGateway6 = {
- address = "fe80::1";
- interface = "eth0";
- };
- 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::1";
- 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"
- '';
-}