mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 12:36:34 +01:00
23 lines
447 B
Nix
23 lines
447 B
Nix
{ modulesPath, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
boot = {
|
|
initrd = {
|
|
availableKernelModules = [ "xhci_pci"];
|
|
};
|
|
};
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
nixpkgs.hostPlatform = "aarch64-linux";
|
|
powerManagement.cpuFreqGovernor = "ondemand";
|
|
}
|
|
|