nixos/hosts/architect/hardware.nix

70 lines
1.6 KiB
Nix
Raw Normal View History

{ config, lib, modulesPath, ... }:
2021-07-01 01:02:55 +01:00
{
2021-11-25 11:42:32 +00:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
hardware.cpu.amd.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2021-07-01 01:02:55 +01:00
environment.etc."crypttab".text = ''
backedNvme /dev/disk/by-uuid/92cfaa4a-82a1-4336-b552-b7f4f3c68613 /newdrive.key
'';
2021-07-01 01:02:55 +01:00
boot = {
kernelModules = [ "kvm-amd" "dm-snapshot" ];
initrd = {
luks.devices = {
# backedNvme = {
# device = "/dev/disk/by-uuid/92cfaa4a-82a1-4336-b552-b7f4f3c68613";
# keyFile = "/newdrive.key";
# allowDiscards = true;
2021-07-01 01:02:55 +01:00
# };
root = {
device = "/dev/disk/by-uuid/bdd5f111-ecec-48d8-861f-94083098c724";
preLVM = true;
allowDiscards = true;
fallbackToPassword = true;
};
};
availableKernelModules =
[ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
};
2021-07-03 23:43:52 +01:00
};
2021-07-01 01:02:55 +01:00
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/28ce6650-de21-4c1d-ae42-95d1e3507740";
fsType = "ext4";
};
2022-07-06 19:34:12 +01:00
"/boot" = {
device = "/dev/disk/by-uuid/B790-869D";
fsType = "vfat";
};
2021-11-25 11:42:32 +00:00
"/backednvme" = {
device = "/dev/mapper/backedNvme";
};
"/services" = {
device = "/backednvme/services";
options = [ "bind" ];
};
2021-07-03 23:43:52 +01:00
"/secrets" = {
device = "/backednvme/secrets";
options = [ "bind" ];
};
"/media" = {
device = "nvmedata/media";
fsType = "zfs";
};
2021-07-03 23:43:52 +01:00
};
2022-10-11 20:31:16 +01:00
swapDevices = [{
device = "/swapfile";
2023-02-11 02:29:48 +00:00
size = 1024 * 64;
2022-10-11 20:31:16 +01:00
}];
2021-07-01 01:02:55 +01:00
}