blob: 61b338cd0919f307791b1ea6c00c10b278aa4fa1 (
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
|
{ pkgs, ... }:
{
imports = [
./hardware.nix
./packages.nix
];
this.pc.enable = true;
this.laptop.enable = true;
this.gui.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"];
fonts.fontconfig.defaultFonts = {
serif = [];
sansSerif = [];
monospace = [];
emoji = [];
};
this.hosts = {
lan.home = true;
mine = true;
};
system.stateVersion = "24.11";
}
|