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

33 lines
837 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-08-26 18:06:46 +00:00
[
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "usbhid" "usb_storage" ];
2021-08-25 05:03:03 +00:00
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
2021-08-26 18:06:46 +00:00
{
device = "/dev/disk/by-uuid/ee6d20e7-03ec-462b-a28a-3e970acc5f0a";
2021-08-25 05:03:03 +00:00
fsType = "ext4";
};
fileSystems."/boot" =
2021-08-26 18:06:46 +00:00
{
device = "/dev/disk/by-uuid/ef0ee32a-8ee0-4c4a-af21-d033ac2bb774";
2021-08-25 05:03:03 +00:00
fsType = "ext4";
};
2021-08-25 05:03:03 +00:00
swapDevices = [ ];
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
}