Check in the... generated hardware config??

This commit is contained in:
2026-05-03 02:15:13 -05:00
parent 7a4d9b4114
commit acaf693a28
4 changed files with 35 additions and 2 deletions
-1
View File
@@ -1,3 +1,2 @@
*.swp *.swp
.codex .codex
hardware-configuration.nix
+2 -1
View File
@@ -10,7 +10,8 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./configuration.nix ./configuration.nix
./hostname/laptop-nixos-1.nix ./hosts/laptop-nixos-1/hostname.nix
./hosts/laptop-nixos-1/hardware-configuration.nix
]; ];
}; };
}; };
@@ -0,0 +1,33 @@
# 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" "thunderbolt" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/mapper/cryptroot";
fsType = "ext4";
};
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/bec0b67c-636f-41ba-b626-0c705ee10f57";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/30B9-37E9";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}