nixos/machines/celerrime/hardware.nix
Ivan Bushchik 0d1f33efba
machines/celerrime: fix all types of USB /
Bluetooth devices / input issues

Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2024-01-07 14:25:28 +03:00

40 lines
947 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [
"usb-storage"
"xhci_pci"
"usbhid"
"mmc_block"
"xhci_hcd"
"xhci_plat_hcd"
"hid_generic"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "uhid" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/679b5c29-3e7f-4449-96f0-7e5890302e32";
fsType = "btrfs";
};
boot.initrd.luks.devices."nixos-root".device =
"/dev/disk/by-uuid/845370c8-5841-4c9e-b50b-c3a70f6fd2b6";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/2AC0-1B04";
fsType = "vfat";
};
swapDevices = [{
device = "/dev/disk/by-partuuid/8bd4586f-e44b-41b3-a060-52ba7773237f";
randomEncryption.enable = true;
}];
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
}