nix-conf/systems/inugami/hardware-configuration.nix

28 lines
550 B
Nix

{ modulesPath, lib, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot = {
initrd = {
avaibleKernelModules = [ "xhci_pci"];
kernelModules = [ ];
};
kernelModules = [ ];
extraModulesPackages = [ ];
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
swapDevices = [ ];
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = "aarch64-linux";
powerManagement.cpuFreqGovenor = "ondemand";
}