From 2cfc9f1387ff7ae7c2c6a6c36394f084db443ea8 Mon Sep 17 00:00:00 2001 From: clerie Date: Wed, 28 Dec 2022 00:39:35 +0100 Subject: [PATCH] hosts/aluminium: init host --- flake.nix | 6 ++++ hosts/aluminium/configuration.nix | 30 +++++++++++++++++++ hosts/aluminium/hardware-configuration.nix | 35 ++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 hosts/aluminium/configuration.nix create mode 100644 hosts/aluminium/hardware-configuration.nix diff --git a/flake.nix b/flake.nix index d1605b0..3e7e4f4 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,12 @@ system = "x86_64-linux"; in { nixosConfigurations = { + aluminium = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./hosts/aluminium/configuration.nix + ]; + }; backup-4 = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ diff --git a/hosts/aluminium/configuration.nix b/hosts/aluminium/configuration.nix new file mode 100644 index 0000000..65d16ad --- /dev/null +++ b/hosts/aluminium/configuration.nix @@ -0,0 +1,30 @@ +{ config, pkgs, lib, ... }: + +{ + imports = + [ + ./hardware-configuration.nix + ../../configuration/common + ]; + + boot.kernelParams = [ "console=ttyS0,115200n8" ]; + + boot.loader.grub.enable = true; + boot.loader.grub.version = 2; + boot.loader.grub.device = "/dev/sda"; + boot.loader.grub.extraConfig = " + serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1 + terminal_input serial + terminal_output serial + "; + + networking.hostName = "aluminium"; + + clerie.monitoring = { + enable = true; + id = "212"; + pubkey = "P1ONelxezvkcLJFyvuCVeIUd3uewPIlONfKk9y6h9QE="; + }; + + system.stateVersion = "22.11"; +} diff --git a/hosts/aluminium/hardware-configuration.nix b/hosts/aluminium/hardware-configuration.nix new file mode 100644 index 0000000..05c7f23 --- /dev/null +++ b/hosts/aluminium/hardware-configuration.nix @@ -0,0 +1,35 @@ +# 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 + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "ehci_pci" "usb_storage" "sd_mod" "sdhci_pci" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/33e8b880-8074-4f12-8aaf-24d7ab190e0a"; + fsType = "ext4"; + }; + + swapDevices = [ ]; + + # 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.enp1s0.useDHCP = lib.mkDefault true; + # networking.interfaces.enp2s0.useDHCP = lib.mkDefault true; + # networking.interfaces.enp3s0.useDHCP = lib.mkDefault true; + # networking.interfaces.enp4s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}