about summary refs log tree commit diff
path: root/adho-configuration.nix
blob: a9328925ab6abc834e3b183dc669ce6543087331 (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
# Local configuration for 'adho' (Thinkpad T470s)
{ config, ...}:

{
  boot.initrd.luks.devices.adho.device = "/dev/disk/by-uuid/722006b0-9654-4ea1-8703-e0cf9ac1905e";
  networking.hostName = "adho";
  services.xserver.libinput.enable = true;
  services.xserver.videoDrivers = [ "intel" ];
  programs.light.enable = true;

  networking.wireless.enable = true;
  networking.wireless.networks = {
    # Welcome to roast club!
    "How do I computer?" = {
      psk = "washyourface";
    };

    # Did someone say wifi credentials are secret?
    # http://bit.ly/2gI43QP
    "Amesto-mobile" = {
      psk = "ostemAt1";
    };

    # Public places in Oslo:
    "Abelone" = {
      psk = "speakeasy";
    };
  };

  hardware.bluetooth.enable = true;

  # Configure POSIX queue limits (for work)
  systemd.tmpfiles.rules = let mqueue = "/proc/sys/fs/mqueue"; in [
    "w ${mqueue}/msgsize_max - - - - ${toString (64 * 1024)}"
    "w ${mqueue}/msg_max     - - - - 50"
  ];
}