From 45c8f7ec273b2c126b8a399301ade11e5e3e7360 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Sun, 15 Feb 2026 18:51:41 -0500 Subject: [PATCH] Revert "added hardware config" This reverts commit 769ab6f72d9ddcbadc9e07501364a54c897c1e8d. --- .../thancred/hardware-configuration.nix | 33 ++----------------- 1 file changed, 2 insertions(+), 31 deletions(-) diff --git a/modules/machine/thancred/hardware-configuration.nix b/modules/machine/thancred/hardware-configuration.nix index 2305e76..c81f1da 100644 --- a/modules/machine/thancred/hardware-configuration.nix +++ b/modules/machine/thancred/hardware-configuration.nix @@ -1,32 +1,3 @@ -# 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 = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "/dev/disk/by-uuid/0a885c0e-cf31-43b7-9a91-6f9624758102"; - fsType = "xfs"; - }; - - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/C7B5-89D4"; - fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; - }; - - swapDevices = - [ { device = "/dev/disk/by-uuid/860c75ce-3afe-47cf-90d8-7612ab543a1e"; } - ]; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; +{ ... }: { + # TODO: needs to filled out later }