DashNix/nix/hardware/overheating/configuration.nix

15 lines
426 B
Nix

{ pkgs, ... }:
{
imports = [
../../modules/ironbar_config.nix
../../modules/boot_params.nix
./dsdt.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "overheating";
programs.ironbar.monitor = "eDP-1";
programs.ironbar.scale = "2.0";
programs.boot.boot_params = [ "rtc_cmos.use_acpi_alarm=1" ];
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
}