summaryrefslogtreecommitdiff
path: root/hosts/thyme/default.nix
blob: 3d2b203528ed53e709a378bd560442ec930605e2 (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
{ pkgs, ... }:

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

  this.main.enable = true;
  this.laptop.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;

  this.hosts = {
    lan.home = true;
    mine = true;
  };

  system.stateVersion = "24.11";
}