2023-09-11 21:51:13 +00: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-08-18 22:22:59 +00:00
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
modulesPath,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
2023-09-11 21:51:13 +00:00
|
|
|
|
imports = [
|
|
|
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
];
|
|
|
|
|
|
2024-08-18 22:22:59 +00:00
|
|
|
|
boot.initrd.availableKernelModules = ["xhci_pci" "usbhid" "uas" "usb_storage"];
|
|
|
|
|
boot.initrd.kernelModules = [];
|
|
|
|
|
boot.kernelModules = [];
|
|
|
|
|
boot.extraModulePackages = [];
|
|
|
|
|
boot.supportedFilesystems = ["zfs"];
|
2023-09-11 21:51:13 +00:00
|
|
|
|
|
2023-10-08 17:32:00 +00:00
|
|
|
|
boot.initrd.luks.devices = {
|
|
|
|
|
cryptroot = {
|
|
|
|
|
device = "/dev/disk/by-uuid/742f819f-98e5-457d-b21e-30443455fde3";
|
|
|
|
|
bypassWorkqueues = true; # optimization for ssds
|
|
|
|
|
};
|
2023-09-11 21:51:13 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-08-18 22:22:59 +00:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "zroot/root";
|
|
|
|
|
fsType = "zfs";
|
|
|
|
|
};
|
2023-10-08 17:32:00 +00:00
|
|
|
|
|
2024-08-18 22:22:59 +00:00
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/0D5D-B809";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
2023-09-11 21:51:13 +00:00
|
|
|
|
|
2024-08-18 22:22:59 +00:00
|
|
|
|
swapDevices = [
|
|
|
|
|
{device = "/dev/disk/by-uuid/af71e930-42ce-4174-a098-4ea5753b1ea9";}
|
|
|
|
|
];
|
2023-09-11 21:51:13 +00:00
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
|
|
|
}
|