nixos-config/system/mistmane/hardware-configuration.nix

36 lines
915 B
Nix
Raw Normal View History

# 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, ... }:
{
imports =
2021-11-20 04:08:18 +00:00
[
(modulesPath + "/installer/scan/not-detected.nix")
];
2021-10-12 20:48:36 +00:00
boot.initrd.availableKernelModules = [ "usbhid" ];
boot.initrd.kernelModules = [ "dm-snapshot" ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
2021-11-20 04:08:18 +00:00
{
device = "/dev/disk/by-uuid/8b204d52-62c1-48e9-b487-e7138f49903a";
2021-08-25 05:03:03 +00:00
fsType = "ext4";
};
fileSystems."/boot" =
2021-11-20 04:08:18 +00:00
{
device = "/dev/disk/by-uuid/375e4660-be08-40ba-8961-0a9cc3a96187";
2021-08-25 05:03:03 +00:00
fsType = "ext4";
};
2021-10-12 20:48:36 +00:00
swapDevices =
[
{ device = "/dev/disk/by-uuid/1114039c-3329-4551-a56d-fccde77a31a7"; }
];
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
}