zaphyra's git: nixfiles

zaphyra and void's nixfiles

commit 7940d9415e9dae7377f5953c4d06671eee1f3774
parent 7f89d6d2e906721759bed028298c2ab1f2940578
Author: Katja (ctucx) <git@ctu.cx>
Date: Mon, 19 May 2025 13:28:05 +0200

hosts/huntii: remove `hardware-configuration.nix`
2 files changed, 0 insertions(+), 38 deletions(-)
M
hosts/huntii/default.nix
|
4
----
D
hosts/huntii/hardware-configuration.nix
|
34
----------------------------------
diff --git a/hosts/huntii/default.nix b/hosts/huntii/default.nix
@@ -16,10 +16,6 @@
     { pkgs, ... }:
     {
 
-      imports = [
-        ./hardware-configuration.nix
-      ];
-
       modules = {
         filesystem.rootDisk = {
           enable = true;
diff --git a/hosts/huntii/hardware-configuration.nix b/hosts/huntii/hardware-configuration.nix
@@ -1,34 +0,0 @@
-{
-  config,
-  lib,
-  pkgs,
-  modulesPath,
-  ...
-}:
-
-{
-
-  boot.kernelModules = [ "kvm-intel" ];
-
-  boot.initrd.availableKernelModules = [
-    "xhci_pci"
-    "thunderbolt"
-    "nvme"
-  ];
-  boot.initrd.luks.devices."root".device = "/dev/disk/by-uuid/b3184874-df78-4d02-9412-b060eb37e038";
-
-  fileSystems."/" = {
-    device = "/dev/disk/by-uuid/f81ba7a3-4b34-4c58-9588-78f8920b2f00";
-    fsType = "ext4";
-  };
-
-  fileSystems."/boot" = {
-    device = "/dev/disk/by-uuid/9315-B4DE";
-    fsType = "vfat";
-    options = [
-      "fmask=0022"
-      "dmask=0022"
-    ];
-  };
-
-}