35 lines
965 B
Nix
35 lines
965 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
boot.extraModulePackages = [ ];
|
|
|
|
fileSystems."/" =
|
|
{ device = "/dev/nvme0n1p2";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=root" "noatime" "ssd" "space_cache" "compress=zstd" ];
|
|
};
|
|
|
|
fileSystems."/home" =
|
|
{ device = "/dev/nvme0n1p2";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=home" "noatime" "ssd" "space_cache" "compress=zstd" ];
|
|
};
|
|
|
|
fileSystems."/boot" =
|
|
{ device = "/dev/disk/by-uuid/F9BD-D185";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
swapDevices = [ ];
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|