2022-02-01 01:20:26 +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.
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2022-02-01 01:22:52 +00:00
|
|
|
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
2022-02-01 01:20:26 +00:00
|
|
|
|
|
2022-02-01 01:22:03 +00:00
|
|
|
|
boot.initrd.availableKernelModules =
|
|
|
|
|
[ "ehci_pci" "ahci" "xhci_pci" "usbhid" "uas" "sd_mod" ];
|
2022-02-01 01:20:26 +00:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
boot.kernelModules = [ "kvm-intel" "wl" ];
|
|
|
|
|
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
|
|
|
|
|
2022-02-01 01:22:03 +00:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/52060f3c-0ebc-4acf-b13b-0792f855aa29";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2022-02-01 01:20:26 +00:00
|
|
|
|
|
2022-02-01 01:22:03 +00:00
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/6EF2-C96B";
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
2022-02-01 01:20:26 +00:00
|
|
|
|
|
|
|
|
|
swapDevices =
|
2022-02-01 01:22:03 +00:00
|
|
|
|
[{ device = "/dev/disk/by-uuid/c0c73073-0fd4-4621-b2b9-b40c51793801"; }];
|
2022-02-01 01:20:26 +00:00
|
|
|
|
|
|
|
|
|
nix.maxJobs = lib.mkDefault 12;
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
|
|
|
|
}
|