blob: 16eca132057bf2529eb5016adf3ad8a63bd72a94 (
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
38
39
40
41
|
{ ... }:
{
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;
services.joycond.enable = true;
virtualisation.waydroid.enable = true;
this.hosts = {
lan.home = true;
mine = true;
yggdrasil.public = true;
yggdrasil.private = true;
};
system.stateVersion = "24.11";
}
|