From e95a2a524e1cf1623e5b9467aa2b3ad1c6dda384 Mon Sep 17 00:00:00 2001 From: Julian Sutter Date: Tue, 24 Jan 2023 14:09:21 -0800 Subject: [PATCH] add hostnames --- systems/aurora.nix | 2 ++ systems/framework.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/systems/aurora.nix b/systems/aurora.nix index 4ff633b..8cc40fd 100644 --- a/systems/aurora.nix +++ b/systems/aurora.nix @@ -1,6 +1,8 @@ { config, lib, pkgs, modulesPath, ... }: { + networking.hostName = "aurora"; + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; diff --git a/systems/framework.nix b/systems/framework.nix index e91958a..e1a6155 100644 --- a/systems/framework.nix +++ b/systems/framework.nix @@ -1,6 +1,8 @@ { config, lib, pkgs, modulesPath, ... }: { + networking.hostName = "framework"; + # CPU Stuff hardware.cpu.amd.updateMicrocode =