nixos/hardware/xps5530/hardware-configuration.nix

44 lines
958 B
Nix
Raw Normal View History

2021-11-16 20:57:04 +01:00
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
2021-11-28 11:11:39 +01:00
imports = [
../nixos-hardware/dell/precision/5530/default.nix
];
2021-11-29 18:38:28 +01:00
boot.initrd.availableKernelModules = [
"aesni_intel"
"ahci"
"cryptd"
"sd_mod"
"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 = [
"mem_sleep_default=deep"
2021-11-26 17:58:01 +01:00
];
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