2022-04-15 15:24:49 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
|
|
virtualisation.docker.enable = true;
|
|
|
|
users.motd = builtins.readFile ./motd;
|
|
|
|
services.tailscale.port = 15430;
|
|
|
|
|
|
|
|
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
|
|
|
}
|