nichts/hosts/cr/temperance/hardware-configuration.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

2024-04-10 11:35:09 +02:00
{
2024-05-22 14:29:45 +02:00
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [(modulesPath + "/installer/scan/not-detected.nix")];
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "sd_mod"];
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
2024-04-10 11:35:09 +02:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/0423508a-6906-4872-baeb-2b1e6bd017a4";
fsType = "ext4";
2024-05-22 14:29:45 +02:00
options = ["noatime" "nodiratime" "discard"];
};
2024-04-10 11:35:09 +02:00
2024-05-22 14:29:45 +02:00
boot.initrd.luks.devices."luks-c03fc486-bdd7-46bf-ac2f-1a55fe1abd6f".device = "/dev/disk/by-uuid/c03fc486-bdd7-46bf-ac2f-1a55fe1abd6f";
2024-04-10 11:35:09 +02:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/D299-5174";
fsType = "vfat";
};
2024-04-10 11:35:09 +02:00
swapDevices = [
2024-05-26 00:29:40 +02:00
{
device = "/var/lib/swapfile";
size = 16 * 1024;
}
];
2024-04-10 11:35:09 +02:00
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp4s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2024-04-10 11:35:09 +02:00
}