From 23ba623e405d0aa8d554274aacd019d7a015aa9d Mon Sep 17 00:00:00 2001 From: Alexander Kassouni Date: Tue, 14 Jul 2026 22:45:47 -0700 Subject: X11 is so back --- machines/hierophant/hardware-configuration.nix | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 machines/hierophant/hardware-configuration.nix (limited to 'machines/hierophant/hardware-configuration.nix') diff --git a/machines/hierophant/hardware-configuration.nix b/machines/hierophant/hardware-configuration.nix new file mode 100644 index 0000000..fec933d --- /dev/null +++ b/machines/hierophant/hardware-configuration.nix @@ -0,0 +1,31 @@ +# 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 = [ "nvme" "xhci_pci" "ahci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/20be168c-8032-4eb3-975c-a6cedbc292c2"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/34EF-0D81"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; + }; + + swapDevices = [ ]; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +} -- cgit v1.3.1