2024-03-06 11:00:56 +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.
|
2024-03-19 20:53:17 +01:00
|
|
|
|
{ config, lib, modulesPath, ... }:
|
2024-03-06 11:00:56 +01:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
2024-03-06 15:12:04 +01:00
|
|
|
|
[
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
2024-03-06 11:00:56 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "uas" "sd_mod" ];
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
boot.blacklistedKernelModules = [ "iwlwifi" "snd_hda_intel" "hdaudio" "btintel" "bluetooth" ];
|
2024-03-06 12:31:17 +01:00
|
|
|
|
boot.extraModprobeConfig = "options kvm_intel nested=1";
|
2024-03-06 11:00:56 +01:00
|
|
|
|
|
2024-03-11 16:51:36 +01:00
|
|
|
|
services.btrfs.autoScrub.enable = true;
|
|
|
|
|
|
2024-03-19 14:46:44 +01:00
|
|
|
|
fileSystems = {
|
|
|
|
|
"/" = {
|
2024-03-06 15:12:04 +01:00
|
|
|
|
device = "/dev/disk/by-uuid/7aa17b01-785e-41c6-9723-79195af906c6";
|
2024-03-06 11:00:56 +01:00
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
options = [ "subvol=@" ];
|
2024-03-19 16:14:49 +01:00
|
|
|
|
neededForBoot = true;
|
2024-03-06 11:00:56 +01:00
|
|
|
|
};
|
|
|
|
|
|
2024-03-19 14:46:44 +01:00
|
|
|
|
"/boot" = {
|
2024-03-06 15:12:04 +01:00
|
|
|
|
device = "/dev/disk/by-uuid/C902-1AF5";
|
2024-03-06 11:00:56 +01:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
2024-03-19 14:46:44 +01:00
|
|
|
|
"/mnt/raid" = {
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
device = "/dev/disk/by-uuid/11727be7-bf9b-4888-8b02-d7eb1f898712";
|
|
|
|
|
options = [ "defaults" "compress=zstd" "subvol=root" "autodefrag" "noatime" "nofail" "x-systemd.device-timeout=60" ];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
"/mnt/backup" = {
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
device = "/dev/disk/by-uuid/c29e7eac-26ba-41b1-ac3e-11123476b7c5";
|
|
|
|
|
options = [ "defaults" "compress=zstd" "subvol=root" "autodefrag" "noatime" "nofail" "x-systemd.device-timeout=60" ];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2024-03-06 11:00:56 +01:00
|
|
|
|
swapDevices =
|
2024-03-06 15:12:04 +01:00
|
|
|
|
[{ device = "/dev/disk/by-uuid/72d061d7-ab18-47b9-beb1-1c465dda1be9"; }];
|
2024-03-06 11:00:56 +01:00
|
|
|
|
|
2024-03-19 14:46:44 +01:00
|
|
|
|
environment.etc."crypttab".text = ''
|
|
|
|
|
a16 /dev/disk/by-uuid/6f1c1b24-3c94-44be-8d1b-70db562079c1 /dev/disk/by-id/usb-Ut165_USB2FlashStorage_08050508d213e6-0:0-part1 luks,keyfile-size=256
|
|
|
|
|
b16 /dev/disk/by-uuid/9540de6d-c907-43e4-b740-2d75dbf37135 /dev/disk/by-id/usb-Ut165_USB2FlashStorage_08050508d213e6-0:0-part1 luks,keyfile-size=256
|
|
|
|
|
a4 /dev/disk/by-uuid/72924bd6-3d58-4437-aafd-ae6d2b995fbf /dev/disk/by-id/usb-Ut165_USB2FlashStorage_08050508d213e6-0:0-part1 luks,keyfile-size=256
|
|
|
|
|
b4 /dev/disk/by-uuid/459c8d9a-6e92-4dec-a998-701ab9e76a2e /dev/disk/by-id/usb-Ut165_USB2FlashStorage_08050508d213e6-0:0-part1 luks,keyfile-size=256
|
|
|
|
|
c4 /dev/disk/by-uuid/5c61cbf0-dbca-48e0-948e-71bea3806a6c /dev/disk/by-id/usb-Ut165_USB2FlashStorage_08050508d213e6-0:0-part1 luks,keyfile-size=256
|
|
|
|
|
'';
|
|
|
|
|
|
2024-03-06 11:00:56 +01:00
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
}
|