summaryrefslogtreecommitdiffstats
path: root/lass/1systems/littleT/config.nix
blob: 2f28cc0d6822e94265e6fe5223119c5460dc85cc (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
with import <stockholm/lib>;
{ config, pkgs, ... }:

{
  imports = [
    <stockholm/lass>

    <stockholm/lass/2configs/retiolum.nix>
  ];

  networking.networkmanager.enable = true;
  networking.wireless.enable = mkForce false;
  time.timeZone = "Europe/Berlin";

  hardware.trackpoint = {
    enable = true;
    sensitivity = 220;
    speed = 0;
    emulateWheel = true;
  };

  services.logind.extraConfig = ''
    HandleLidSwitch=ignore
  '';

  krebs.build.host = config.krebs.hosts.littleT;
}