1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 02:53:34 +02:00
nixos-hardware/dell/xps/15-7590/default.nix

29 lines
718 B
Nix
Raw Normal View History

2023-02-25 19:57:50 +01:00
{ lib, ... }:
2021-04-25 07:03:51 +02:00
{
2019-07-18 21:19:31 +02:00
imports = [
../../../common/cpu/intel
../../../common/pc/laptop
2019-08-17 08:08:08 +02:00
../../../common/pc/ssd
2019-07-18 21:19:31 +02:00
];
# Set to true for just the first run, then disable it.
# boot.loader.efi.canTouchEfiVariables = lib.mkDefault true;
2019-07-18 21:19:31 +02:00
# Load GPU drivers.
# hardware.bumblebee.enable = lib.mkDefault true;
# High DPI for X users. 175 "looks reasonable" but I didn't do the actual DPI
# calculation.
# services.xserver.dpi = lib.mkDefault 175;
2020-02-02 03:11:31 +01:00
# Earlier font-size setup
console.earlySetup = true;
# Prevent small EFI partiion from filling up
boot.loader.grub.configurationLimit = 10;
2023-02-25 19:57:50 +01:00
# This will save you money and possibly your life!
services.thermald.enable = lib.mkDefault true;
2019-07-18 21:19:31 +02:00
}