blob: 4ef98eb0eefdd4681670e6366420e8577c4778df (
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
|
{ bild ? import ./Bild.nix { } }:
# Cloud infrastructure, always online. Mostly for messaging-related stuff.
bild.os {
imports = [
./OsBase.nix
./Packages.nix
./Users.nix
./Cloud/Chat.nix
./Cloud/Comms.nix
./Cloud/Git.nix
./Cloud/Cgit.nix
./Cloud/Hardware.nix
./Cloud/Hub.nix
./Cloud/Mail.nix
./Cloud/Networking.nix
./Cloud/Web.nix
./Cloud/Znc.nix
"${bild.sources.nixos-mailserver}"
./Nixpert.nix
];
networking.hostName = "simatime";
networking.domain = "simatime.com";
# the datacenter for this VM is in NYC
time.timeZone = "America/New_York";
}
|