1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-12-26 19:49:45 +01:00
nixos-hardware/slimbook/hero/rpl-rtx/default.nix

35 lines
825 B
Nix
Raw Normal View History

2024-11-19 02:15:18 +01:00
{ config, lib, ... }:
{
imports = [
2024-12-20 23:50:15 +01:00
../../../common/cpu/intel
2024-12-23 02:15:58 +01:00
../../../common/gpu/intel
2024-11-19 02:15:18 +01:00
../../../common/gpu/nvidia/ada-lovelace
../../../common/gpu/nvidia/prime.nix
../../../common/pc/laptop
../../../common/pc/laptop/ssd
];
hardware = {
graphics = {
enable = lib.mkDefault true;
enable32Bit = lib.mkDefault true;
};
nvidia = {
prime = {
intelBusId = lib.mkDefault "PCI:0:2:0";
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
};
powerManagement = {
enable = lib.mkDefault false; # Causes sleep issues. See README for more information
finegrained = lib.mkDefault false;
2024-11-19 02:15:18 +01:00
};
dynamicBoost.enable = true;
2024-11-19 02:15:18 +01:00
};
};
services = {
fwupd.enable = lib.mkDefault true;
thermald.enable = lib.mkDefault true;
};
}