From 57a2bf8bf1ebf4892fb9368510ae502a6a873c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98ystein=20Tveit?= Date: Sat, 6 Jul 2024 13:06:34 +0200 Subject: [PATCH] hosts/dagali: init --- base/networking.nix | 4 +++ flake.nix | 2 ++ hosts/dagali/configuration.nix | 40 +++++++++++++++++++++++++ hosts/dagali/hardware-configuration.nix | 33 ++++++++++++++++++++ values.nix | 4 +++ 5 files changed, 83 insertions(+) create mode 100644 hosts/dagali/configuration.nix create mode 100644 hosts/dagali/hardware-configuration.nix diff --git a/base/networking.nix b/base/networking.nix index 5c710a3..095515a 100644 --- a/base/networking.nix +++ b/base/networking.nix @@ -3,6 +3,10 @@ systemd.network.enable = true; networking.domain = "pvv.ntnu.no"; networking.useDHCP = false; + # networking.search = [ "pvv.ntnu.no" "pvv.org" ]; + # networking.nameservers = lib.mkDefault [ "129.241.0.200" "129.241.0.201" ]; + # networking.tempAddresses = lib.mkDefault "disabled"; + # networking.defaultGateway = values.hosts.gateway; # The rest of the networking configuration is usually sourced from /values.nix diff --git a/flake.nix b/flake.nix index 069c2fc..2196b73 100644 --- a/flake.nix +++ b/flake.nix @@ -145,6 +145,8 @@ inputs.gergle.overlays.default ]; }; + + dagali = unstableNixosConfig "dagali" { }; }; nixosModules = { diff --git a/hosts/dagali/configuration.nix b/hosts/dagali/configuration.nix new file mode 100644 index 0000000..499d3b6 --- /dev/null +++ b/hosts/dagali/configuration.nix @@ -0,0 +1,40 @@ + +{ config, pkgs, values, ... }: +{ + imports = [ + ./hardware-configuration.nix + ../../base.nix + ../../misc/metrics-exporters.nix + ]; + + # buskerud does not support efi? + # boot.loader.systemd-boot.enable = true; + # boot.loader.efi.canTouchEfiVariables = true; + boot.loader.grub.enable = true; + boot.loader.grub.device = "/dev/sda"; + + networking.hostName = "dagali"; + networking.search = [ "pvv.ntnu.no" "pvv.org" ]; + networking.nameservers = [ "129.241.0.200" "129.241.0.201" ]; + networking.tempAddresses = "disabled"; + networking.networkmanager.enable = true; + + systemd.network.networks."ens18" = values.defaultNetworkConfig // { + matchConfig.Name = "ens18"; + address = with values.hosts.dagali; [ (ipv4 + "/25") (ipv6 + "/64") ]; + }; + + # List packages installed in system profile + environment.systemPackages = with pkgs; [ + # TODO: consider adding to base.nix + nix-output-monitor + ]; + + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It‘s perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "24.05"; # Did you read the comment? +} diff --git a/hosts/dagali/hardware-configuration.nix b/hosts/dagali/hardware-configuration.nix new file mode 100644 index 0000000..4bf4839 --- /dev/null +++ b/hosts/dagali/hardware-configuration.nix @@ -0,0 +1,33 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/profiles/qemu-guest.nix") + ]; + + boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/4de345e2-be41-4d10-9b90-823b2c77e9b3"; + fsType = "ext4"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/aa4b9a97-a7d8-4608-9f67-4ad084f1baf7"; } + ]; + + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.ens18.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; +} diff --git a/values.nix b/values.nix index cd8e26d..97ed8f1 100644 --- a/values.nix +++ b/values.nix @@ -31,6 +31,10 @@ in rec { ipv4 = pvv-ipv4 168; ipv6 = pvv-ipv6 168; }; + dagali = { + ipv4 = pvv-ipv4 185; + ipv6 = pvv-ipv6 185; + }; ildkule = { ipv4 = "129.241.153.213"; ipv4_internal = "192.168.12.209";