summaryrefslogtreecommitdiff
path: root/hosts/tomato/default.nix
blob: f30cbb86288cb83ee90b11af6a57bd10e4dd52e2 (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
28
29
30
31
32
33
34
35
36
37
{ ... }:

{
  imports = [
    ./hardware.nix
    ./packages.nix
  ];

  this.main.enable = true;
  this.laptop.enable = true;
  this.laptop.thinkpad.enable = true;

  networking.domain = "alef.zoar.cx";

  this.locales = {
    default = "us";
    extra = ["it" "jp"];
    dictionaries.extra = ["grc" "la"];
  };

  time.timeZone = "America/Chicago";

  this.users.enabled = ["simon"];

  services.printing.enable = true;

  services.fprintd.enable = true;

  this.hosts = {
    lan.home = true;
    mine = true;
    yggdrasil.public = true;
    yggdrasil.private = true;
  };

  system.stateVersion = "24.11";
}