nixos-config/system/rainbowdash/default.nix

30 lines
548 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports = [ ./boot-config.nix ./secure-boot.nix ./hardware-configuration.nix ];
networking.hostName = "rainbowdash";
hardware = {
cpu.intel.updateMicrocode = true;
opengl.extraPackages = with pkgs; [
intel-media-driver
vaapiIntel
];
};
services = {
tlp.enable = true;
upower.enable = true;
throttled.enable = true;
};
2020-08-15 03:27:08 +00:00
programs.light.enable = true;
environment.systemPackages = with pkgs; [
i7z
linuxPackages.cpupower
];
system.stateVersion = "20.03";
}