2021-04-26 20:28:47 -04: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.
|
2022-12-27 10:10:53 -05:00
|
|
|
|
{ lib, modulesPath, ... }:
|
2021-04-26 20:28:47 -04:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2023-09-10 14:27:05 -04:00
|
|
|
|
boot = {
|
|
|
|
|
initrd = {
|
|
|
|
|
availableKernelModules = [ "usbhid" ];
|
|
|
|
|
kernelModules = [ ];
|
|
|
|
|
};
|
|
|
|
|
kernelModules = [ ];
|
|
|
|
|
extraModulePackages = [ ];
|
|
|
|
|
};
|
2021-04-26 20:28:47 -04:00
|
|
|
|
|
|
|
|
|
fileSystems."/" = {
|
2021-05-19 21:15:38 -04:00
|
|
|
|
device = "/dev/disk/by-label/NIXOS_SD";
|
2021-04-26 20:28:47 -04:00
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
|
|
|
}
|