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

29 lines
842 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, ... }:
{
2023-08-26 23:00:18 +00:00
imports = [ (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 = [ ];
2023-08-26 23:00:18 +00:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/8b204d52-62c1-48e9-b487-e7138f49903a";
fsType = "ext4";
};
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
};
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"; }];
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
}