33 lines
790 B
Nix
33 lines
790 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "rtsx_pci_sdmmc" ];
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
boot.extraModulePackages = [ ];
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-partlabel/rootfs";
|
|
fsType = "xfs";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-partlabel/ESP";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
fileSystems."/home" = {
|
|
device = "/dev/disk/by-partlabel/home";
|
|
fsType = "xfs";
|
|
};
|
|
|
|
fileSystems."/srv/data" = {
|
|
device = "/dev/disk/by-partlabel/data";
|
|
fsType = "xfs";
|
|
};
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
hardware.sensor.iio.enable = true;
|
|
}
|