summaryrefslogtreecommitdiff
path: root/hosts/radish/default.nix
blob: 263550163746463d0915b76364a636e4489df8ee (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
{ lib, ... }:

{
  imports = [
    ./packages.nix
  ];

  boot.isContainer = true;

  networking.domain = "alef.zoar.cx";
  time.timeZone = "America/Chicago";
  this.locales.default = "us";
  this.locales.dictionaries.enable = true;

  networking.firewall.enable = false;
  networking.useDHCP = false;
  xdg = {
    autostart.enable = false;
    icons.enable = false;
    mime.enable = false;
    sounds.enable = false;
  };

  this.buildMachines = ["pinto"];

  this.hosts = {
    lan.home = true;
    mine = true;
    yggdrasil.public = true;
    yggdrasil.private = true;
  };
  services.yggdrasil.enable = lib.mkForce false;

  system.stateVersion = "24.11";
}