dotfiles/hosts/tempest/hardware-configuration.nix

57 lines
1.9 KiB
Nix
Raw Normal View History

2022-04-27 01:36:16 +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.
2023-02-21 01:45:56 +00:00
{ config, lib, modulesPath, ... }:
2022-04-27 01:36:16 +00:00
{
2023-02-05 22:16:20 +00:00
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2022-04-27 01:36:16 +00:00
2023-02-05 22:16:20 +00:00
boot.initrd.availableKernelModules =
[ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ "amdgpu" ];
2023-01-31 14:07:47 +00:00
boot.kernelModules = [ "kvm-amd" ];
2022-04-27 01:36:16 +00:00
boot.extraModulePackages = [ ];
2023-02-05 22:16:20 +00:00
services.xserver.videoDrivers = [ "amdgpu" ];
2022-04-27 01:36:16 +00:00
2023-02-05 22:16:20 +00:00
fileSystems."/" = {
2023-02-21 01:30:45 +00:00
device = "/dev/disk/by-label/nixos";
2023-02-05 22:16:20 +00:00
fsType = "ext4";
};
fileSystems."/boot" = {
2023-02-21 01:30:45 +00:00
device = "/dev/disk/by-label/boot";
2023-02-05 22:16:20 +00:00
fsType = "vfat";
};
2022-04-27 01:36:16 +00:00
swapDevices = [ ];
2023-01-31 14:07:47 +00:00
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp4s0.useDHCP = lib.mkDefault true;
2023-02-21 01:30:45 +00:00
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
2023-02-05 22:16:20 +00:00
hardware.cpu.amd.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware;
2023-03-18 13:29:20 +00:00
hardware.fancontrol.enable = true;
hardware.fancontrol.config = ''
# Configuration file generated by pwmconfig, changes will be lost
INTERVAL=10
DEVPATH=hwmon0=devices/pci0000:00/0000:00:03.1/0000:06:00.0/0000:07:00.0/0000:08:00.0
DEVNAME=hwmon0=amdgpu
FCTEMPS=hwmon0/pwm1=hwmon0/temp1_input
FCFANS= hwmon0/pwm1=hwmon0/fan1_input
2023-03-20 03:35:06 +00:00
MINTEMP=hwmon0/pwm1=50
2023-03-18 13:29:20 +00:00
MAXTEMP=hwmon0/pwm1=70
2023-03-20 03:35:06 +00:00
MINSTART=hwmon0/pwm1=100
MINSTOP=hwmon0/pwm1=10
MINPWM=hwmon0/pwm1=10
MAXPWM=hwmon0/pwm1=240
2023-03-18 13:29:20 +00:00
'';
2022-04-27 01:36:16 +00:00
}