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.
|
|
|
|
|
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
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" = {
|
|
|
|
|
device = "/dev/disk/by-uuid/375e4660-be08-40ba-8961-0a9cc3a96187";
|
|
|
|
|
fsType = "ext4";
|
|
|
|
|
};
|
2020-12-04 23:35:51 +00:00
|
|
|
|
|
2021-10-12 20:48:36 +00:00
|
|
|
|
swapDevices =
|
2023-08-26 23:00:18 +00:00
|
|
|
|
[{ device = "/dev/disk/by-uuid/1114039c-3329-4551-a56d-fccde77a31a7"; }];
|
2020-12-04 23:35:51 +00:00
|
|
|
|
|
|
|
|
|
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
|
|
|
|
|
}
|