blob: 9a607646691324aa8911483a63d2c3b126bdc90c (
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
|
{ 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;
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";
}
|