configuration.nix/hosts/skipper/hardware/default.nix

51 lines
1.1 KiB
Nix

{
lib,
pkgs,
config,
...
}: {
imports = [./kernel.nix ./filesystem.nix];
boot = {
initrd.luks.devices = {
luks0 = {
allowDiscards = true;
bypassWorkqueues = true;
device = "/dev/disk/by-partlabel/CRYPT";
preLVM = true;
};
};
loader.efi.canTouchEfiVariables = true;
resumeDevice = "/dev/vg0/swap";
supportedFilesystems = ["btrfs"];
};
swapDevices = [{device = "/dev/vg0/swap";}];
hardware = {
bluetooth = {
enable = true;
settings = {
General = {
Experimental = true;
KernelExperimental = true;
};
};
package = pkgs.bluez.override {withExperimental = true;};
};
cpu.intel.updateMicrocode = lib.mkDefault true;
enableRedistributableFirmware = true;
gpgSmartcards.enable = true;
opengl = {
enable = true;
extraPackages = [pkgs.intel-media-driver];
driSupport = true;
driSupport32Bit = true;
};
sensor.hddtemp = {
enable = true;
drives = ["/dev/disk/by-path/pci-0000:01:00.0-nvme-1"];
};
xone.enable = true;
};
}