summaryrefslogtreecommitdiff
path: root/hosts/glados/default.nix
blob: 54634b2fbd7845e87d5cef3a3e01ab0a4b272352 (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
_: {
  imports = [
    ./boot.nix
    ./hardware-configuration.nix
    ../../modules/nixos/features/tailscale.nix
    ../../modules/nixos/features/virtualisation.nix
  ];

  desktop.gnome.enable = true;

  features = {
    tailscale.enable = true;
    virtualisation.enable = true;
  };

  hardware = {
    enable = true;
    nvidia.enable = true;
  };

  environment.etc."environment".text = ''
    LIBVA_DRIVER_NAME=vdpau
  '';

  networking.hostName = "glados";
  powerManagement.cpuFreqGovernor = "ondemand";

  security.tpm2 = {
    enable = true;
    abrmd.enable = true;
  };

  zramSwap = {
    enable = true;
    algorithm = "zstd";
    swapDevices = 1;
    memoryPercent = 50;
  };
}