about summary refs log tree commit diff stats
path: root/hosts/apzu/default.nix
blob: 98c83325048b07da03e2e1eb5451ccd47aaf7f35 (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
{...}: {
  imports = [
    ./hardware.nix
  ];

  soispha = {
    services.backup = {
      # Apzu should be regularly synced with Tiamat, which performs updates.
      enable = false;
    };
    bluetooth.enable = true;
    laptop = {
      backlight = "intel_backlight";
      enable = true;
    };
    locale.enable = true;
    networking = {
      enable = true;
      hostName = "apzu";
      mode = "NetworkManager";
    };
    nixpkgs = {
      enable = true;
      systemName = "x86_64-linux";
    };
    users = {
      enable = true;
      enableDeprecatedPlugdev = true;
      hashedPassword = "$y$jFT$3qI9MYLDHPUdGKsVa8skV0$TOjX0SFHWuj52zd7/kmkNtG5EqQwYcqv0FKXWbLaro6";
    };
  };

  system.stateVersion = "23.05";
}