2022-04-17 22:29:13 -05: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, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
|
|
{
|
2022-04-25 22:18:41 -05:00
|
|
|
|
imports =
|
|
|
|
|
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
|
|
|
|
|
];
|
2022-04-17 22:29:13 -05:00
|
|
|
|
|
2022-04-25 22:18:41 -05:00
|
|
|
|
boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" "usb_storage" "uas" ];
|
|
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
|
|
boot.extraModulePackages = [ ];
|
2022-04-17 22:29:13 -05:00
|
|
|
|
|
2022-04-25 22:18:41 -05:00
|
|
|
|
fileSystems."/" ={
|
|
|
|
|
|
device = "/dev/disk/by-uuid/35f9a49a-b557-4eb3-a013-2afca7a990e4";
|
|
|
|
|
|
fsType = "btrfs";
|
|
|
|
|
|
};
|
2022-04-17 22:29:13 -05:00
|
|
|
|
|
2022-04-25 22:18:41 -05:00
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
|
|
device = "/dev/disk/by-uuid/A982-C8A3";
|
|
|
|
|
|
fsType = "vfat";
|
|
|
|
|
|
};
|
2022-04-17 22:29:13 -05:00
|
|
|
|
|
2022-04-25 22:18:41 -05:00
|
|
|
|
swapDevices = [ {
|
|
|
|
|
|
device = "/dev/disk/by-uuid/4b6f2dc4-d845-4ec4-81f2-4f61bb3f282d";
|
|
|
|
|
|
} ];
|
2022-04-17 22:29:13 -05:00
|
|
|
|
|
2022-04-25 22:18:41 -05:00
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
2022-04-17 22:29:13 -05:00
|
|
|
|
}
|