2020-12-04 23:35:51 +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.
|
2024-03-02 03:13:17 +00:00
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
modulesPath,
|
|
|
|
|
...
|
|
|
|
|
}:
|
2020-12-04 23:35:51 +00:00
|
|
|
|
|
|
|
|
|
{
|
2023-08-26 23:00:18 +00:00
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2020-12-04 23:35:51 +00:00
|
|
|
|
|
2021-10-12 20:48:36 +00:00
|
|
|
|
boot.initrd.availableKernelModules = [ "usbhid" ];
|
|
|
|
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
2020-12-04 23:35:51 +00:00
|
|
|
|
boot.kernelModules = [ ];
|
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
2023-08-26 23:00:18 +00:00
|
|
|
|
fileSystems."/" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/8b204d52-62c1-48e9-b487-e7138f49903a";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2020-12-04 23:35:51 +00:00
|
|
|
|
|
2023-08-26 23:00:18 +00:00
|
|
|
|
fileSystems."/boot" = {
|
2024-01-23 00:44:52 +00:00
|
|
|
|
device = "/dev/disk/by-uuid/8B78-CA04";
|
|
|
|
|
fsType = "vfat";
|
2023-08-26 23:00:18 +00:00
|
|
|
|
};
|
2020-12-04 23:35:51 +00:00
|
|
|
|
|
2024-03-02 03:13:17 +00:00
|
|
|
|
swapDevices = [ { device = "/dev/disk/by-uuid/1114039c-3329-4551-a56d-fccde77a31a7"; } ];
|
2020-12-04 23:35:51 +00:00
|
|
|
|
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
|
|
|
}
|