blob: c6a237882e5af20e0f6f7fe9d52f00a6f6f8cc15 (
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
|
{ ... }:
{
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;
services.fprintd.enable = true;
this.hosts = {
lan.home = true;
mine = true;
};
system.stateVersion = "24.11";
}
|