nixconf/modules/hosts/desktop/hardware-configuration.nix
2026-03-28 18:35:54 -05:00

50 lines
1.1 KiB
Nix

{ self, inputs, ... }:
{
flake.nixosModules.desktopHardware =
{
config,
lib,
pkgs,
modulesPath,
nixpkgs,
...
}:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [
"nvme"
"ahci"
"xhci_pci"
"usbhid"
"usb_storage"
"sd_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/7001a8e1-003d-4119-afbb-5d6d25759e08";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/5752-EAAD";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
swapDevices = [
{ device = "/dev/disk/by-uuid/e87cbcca-c7c6-4e03-90e7-5852ab59f0b9"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}