nixos/machines/stella/hardware.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2023-07-16 16:43:13 +03:00
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
2023-07-17 10:08:51 +03:00
boot.kernelModules = [ "kvm-amd" "nct6775" ];
2023-07-16 16:43:13 +03:00
boot.extraModulePackages = [ ];
2023-07-17 10:08:51 +03:00
environment.etc = {
"sysconfig/lm_sensors".text = ''
HWMON_MODULES="lm75"
'';
};
2023-07-16 16:43:13 +03:00
fileSystems."/" =
{ device = "/dev/disk/by-uuid/e9d47776-8f25-490b-9ea3-ee80ab9d6110";
fsType = "btrfs";
};
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/c2e3757b-b29c-4797-9535-084eb71351e9";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/4F73-6FFF";
fsType = "vfat";
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
2023-07-16 19:00:44 +03:00
services.tlp.settings = {
START_CHARGE_THRESH_BAT0 = 40;
STOP_CHARGE_THRESH_BAT0 = 80;
};
powerManagement.enable = true;
powerManagement.cpuFreqGovernor = "powersave";
2023-07-16 16:43:13 +03:00
}