nixos/systems/gwyn/hardware-configuration.nix

44 lines
804 B
Nix
Raw Normal View History

2021-12-28 23:05:17 +01:00
{ lib, ... }:
2021-11-16 20:57:04 +01:00
{
2021-11-28 11:11:39 +01:00
imports = [
2021-12-22 17:49:02 +01:00
../../hardware/nvidia
2021-11-28 11:11:39 +01:00
];
boot.initrd.availableKernelModules = [
2021-11-29 18:38:28 +01:00
"aesni_intel"
"ahci"
"cryptd"
2021-11-29 18:44:15 +01:00
"nvme"
"rtsx_pci_sdmmc"
2021-11-29 18:38:28 +01:00
"sd_mod"
2021-11-29 18:44:15 +01:00
"sr_mod"
"usbhid"
2021-11-29 18:38:28 +01:00
"usb_storage"
"xhci_pci"
];
2021-11-22 15:12:19 +01:00
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ "kvm-intel" ];
2021-11-16 20:57:04 +01:00
boot.extraModulePackages = [ ];
boot.kernelParams = [ ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
2021-11-29 18:38:28 +01:00
boot.initrd.luks.devices."cryptlvm".device = "/dev/nvme0n1p2";
2021-11-16 20:57:04 +01:00
fileSystems."/" =
2021-11-26 17:58:01 +01:00
{
device = "/dev/disk/by-label/nixos";
2021-11-16 20:57:04 +01:00
fsType = "ext4";
};
fileSystems."/boot" =
2021-11-26 17:58:01 +01:00
{
device = "/dev/disk/by-label/BOOT";
2021-11-16 20:57:04 +01:00
fsType = "vfat";
};
swapDevices =
2021-11-26 17:58:01 +01:00
[{ device = "/dev/disk/by-label/swap"; }];
2021-11-16 20:57:04 +01:00
}
2021-11-22 15:12:19 +01:00