os/hosts/cox/hardware-configuration.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.4 KiB
Nix
Raw Normal View History

2022-08-21 22:53:04 +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.
{
2023-02-25 13:45:21 +00:00
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
2022-08-21 22:53:04 +00:00
2023-02-25 13:45:21 +00:00
boot.initrd.availableKernelModules = ["xhci_pci" "usbhid" "usb_storage" "uas"];
2023-01-28 21:30:37 +00:00
boot.kernelPackages = pkgs.linuxPackages_6_1;
2023-02-25 13:45:21 +00:00
boot.kernelParams = ["usb-storage.quirks=2109:0716:ouw,174c:55aa:u,2109:2813:ouw,2109:0813:ouw"];
2022-08-21 22:53:04 +00:00
2023-10-05 21:57:34 +00:00
boot.loader = {
timeout = 0;
efi.canTouchEfiVariables = false;
2023-01-28 21:30:37 +00:00
2023-10-05 21:57:34 +00:00
systemd-boot.enable = false;
generic-extlinux-compatible.enable = false;
2023-02-25 13:45:21 +00:00
2023-10-05 21:57:34 +00:00
grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
2023-01-28 21:30:37 +00:00
boot.initrd.luks.devices."cryptroot" = {
device = "/dev/disk/by-uuid/d86a20a6-686c-4bf8-bd3b-911901272742";
keyFile = "/dev/disk/by-id/usb-SanDisk_Cruzer_Blade_03024516121421043657-0:0-part1";
fallbackToPassword = true;
bypassWorkqueues = true;
2022-08-21 22:53:04 +00:00
};
2023-02-25 13:45:21 +00:00
fileSystems."/" = {
device = "/dev/disk/by-label/root";
fsType = "ext4";
};
2022-08-21 22:53:04 +00:00
2023-02-25 13:45:21 +00:00
fileSystems."/boot" = {
device = "/dev/disk/by-label/boot";
fsType = "vfat";
};
2022-08-21 22:53:04 +00:00
2023-02-25 13:45:21 +00:00
swapDevices = [
{device = "/dev/disk/by-label/swap";}
];
2022-08-21 22:53:04 +00:00
2023-01-28 21:30:37 +00:00
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
2022-08-21 22:53:04 +00:00
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
}