Files
LiNix/modules/hosts/laptop/hardware-configuration.nix
2026-02-13 19:15:24 -06:00

46 lines
1.3 KiB
Nix

{
flake.nixosModules.laptopHardware = { config, lib, modulesPath, ... }: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot = {
initrd = {
availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ];
kernelModules = [ ];
luks.devices."luks-fbc12fd4-a2b8-44b1-a89a-e502662b1fce".device = "/dev/disk/by-uuid/fbc12fd4-a2b8-44b1-a89a-e502662b1fce";
};
kernelModules = [ "kvm-intel" ];
extraModulePackages = [ ];
};
fileSystems = {
"/" = {
device = "/dev/mapper/luks-fbc12fd4-a2b8-44b1-a89a-e502662b1fce";
fsType = "btrfs";
options = [ "subvol=@" ];
};
"/home" = {
device = "/dev/mapper/luks-fbc12fd4-a2b8-44b1-a89a-e502662b1fce";
fsType = "btrfs";
options = [ "subvol=@home" ];
};
"/media/nvme" = {
device = "/dev/mapper/luks-fbc12fd4-a2b8-44b1-a89a-e502662b1fce";
fsType = "btrfs";
};
"/boot" = {
device = "/dev/disk/by-uuid/C51E-CE6C";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
};
}