summaryrefslogtreecommitdiffstats
path: root/tv/2configs/hw/w110er.nix
blob: 09dd9a49d7206e458b0007387568b6ea234ae836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{ pkgs, ... }: let
  lib = import <stockholm/lib>;
in {
  imports = [
    ../smartd.nix
    {
      # nvidia doesn't build despite
      #  https://github.com/NixOS/nixpkgs/issues/33284
      #hardware.bumblebee.enable = true;
      #hardware.bumblebee.group = "video";
      #hardware.enableRedistributableFirmware= true;
      #krebs.nixpkgs.allowUnfreePredicate = pkg: any (eq (packageName pkg)) [
      #  "nvidia-x11"
      #  "nvidia-persistenced"
      #  "nvidia-settings"
      #];
    }

    {
      nix.buildCores = 4;
      nix.maxJobs = 4;
    }
    (if lib.versionAtLeast (lib.versions.majorMinor lib.version) "21.11" then {
      nix.daemonCPUSchedPolicy = "batch";
      nix.daemonIOSchedPriority = 1;
    } else {
      nix.daemonIONiceLevel = 1;
      nix.daemonNiceLevel = 1;
    })
  ];

  boot.extraModprobeConfig = ''
    options kvm_intel nested=1
  '';

  boot.initrd.availableKernelModules = [ "ahci" ];
  boot.kernelModules = [ "kvm-intel" ];

  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;

  hardware.enableRedistributableFirmware = true;

  hardware.opengl.driSupport32Bit = true;
  hardware.opengl.extraPackages = [ pkgs.vaapiIntel ];

  networking.wireless.enable = true;

  services.logind.extraConfig = ''
    HandleHibernateKey=ignore
    HandleLidSwitch=ignore
    HandlePowerKey=ignore
    HandleSuspendKey=ignore
  '';

  system.activationScripts.powertopTunables = ''
    echo 1 > /sys/module/snd_hda_intel/parameters/power_save
    echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
    (cd /sys/bus/pci/devices
      for i in *; do
        echo auto > $i/power/control # defaults to 'on'
      done)
  '';

  services.xserver = {
    videoDriver = "intel";
  };

  tv.hw.screens.primary.width = 1366;
  tv.hw.screens.primary.height = 768;
}