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

  soispha = {
    bluetooth = {enable = true;};
    networking = {
      enable = true;
      hostName = "tiamat";
      mode = "systemd-networkd";
    };
    nixpkgs = {
      enable = true;
      systemName = "x86_64-linux";
    };
    services = {
      backup = {
        backupDiskUuid = "c06ce163-2955-4388-b212-dfec4448fcf4";
        enable = true;
      };
    };
    locale = {
      enable = true;
      keyMap = "us";
    };
    users = {
      enable = true;
      enableDeprecatedPlugdev = true;
      hashedPassword = "$y$jFT$qi3wS9njrMl2y55b3NOBI0$j40Qt6AAkMSfZ82KPhqMaUaPztWtPps1wOqaXaF/L.6";
    };
  };

  system.stateVersion = "23.05";
}