about summary refs log tree commit diff
path: root/machines/aszlig/tishtushi.nix
blob: 8a7977b1a2a98895cdb092252dd932349ac0fe9b (plain) (blame)
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
{ pkgs, lib, ... }:

{
  vuizvui.user.aszlig.profiles.workstation.enable = true;

  boot.kernelPackages = pkgs.linuxPackages_latest;

  boot.loader = {
    grub.enable = true;
    grub.device =
      "/dev/disk/by-id/ata-Samsung_SSD_860_EVO_500GB_S3Z2NB0KA77896M";
    timeout = 1;
  };

  boot.initrd.luks.devices = {
    tishtushi-swap = {
      device = "/dev/disk/by-uuid/db144d14-9268-4f12-a421-e9c41fc207a3";
    };
    tishtushi-root = {
      device = "/dev/disk/by-uuid/e8eafbdd-6056-41c7-88bc-51bfb8a98e22";
    };
  };

  hardware.cpu.intel.updateMicrocode = true;

  networking.hostName = "tishtushi";
  networking.wireless.enable = lib.mkForce true;
  networking.interfaces.wlp2s0.useDHCP = true;

  fileSystems."/boot" = {
    device = "/dev/disk/by-uuid/763a7117-3dbf-4e80-9e63-c7039477ef3d";
    fsType = "ext4";
  };

  fileSystems."/" = {
    device = "/dev/mapper/tishtushi-root";
    fsType = "btrfs";
    options = [ "space_cache=v2" "compress=zstd" "noatime" "discard=async" ];
  };

  swapDevices = lib.singleton {
    device = "/dev/mapper/tishtushi-swap";
  };

  services.tlp.enable = true;

  services.xserver.videoDrivers = [ "intel" ];
  services.xserver.synaptics.enable = true;
  services.xserver.synaptics.tapButtons = true;
  services.xserver.synaptics.twoFingerScroll = true;
  services.xserver.synaptics.vertEdgeScroll = false;
  services.xserver.synaptics.accelFactor = "0.1";

  nix.maxJobs = 4;
}