2022-04-15 15:24:49 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2022-12-21 18:04:41 +00:00
|
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" "wasm32-wasi" ];
|
2022-04-15 15:24:49 +00:00
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
users.motd = builtins.readFile ./motd;
|
|
|
|
services.tailscale.port = 15430;
|
2023-02-04 02:11:43 +00:00
|
|
|
environment.systemPackages = with pkgs; [ wasmtime weechat ];
|
2022-04-15 15:24:49 +00:00
|
|
|
|
2023-02-04 02:13:55 +00:00
|
|
|
services.tor = {
|
|
|
|
enable = true;
|
|
|
|
client.enable = true;
|
|
|
|
settings.SOCKSPort = [ 9051 ];
|
|
|
|
};
|
|
|
|
|
2022-04-15 15:24:49 +00:00
|
|
|
networking.hostName = "pneuma";
|
|
|
|
networking.hostId = "34fbd94b";
|
2022-10-16 20:43:21 +00:00
|
|
|
|
|
|
|
time.timeZone = "America/Toronto";
|
2022-04-15 15:24:49 +00:00
|
|
|
}
|