dotfiles/nixos/boxes/vpsfree1/default.nix

32 lines
624 B
Nix
Raw Normal View History

2022-03-10 12:25:23 +00:00
{ config, pkgs, inputs, lib, ... }: {
2022-03-05 14:34:27 +00:00
networking.hostName = "vpsfree1";
imports = [
./vpsfree1-vpsadminos.nix
../cli.nix
2022-10-01 11:33:56 +01:00
../nginx.nix
2022-06-18 08:44:06 +01:00
./foundryvtt.nix
2022-07-19 13:20:48 +01:00
./cryptpad.nix
2022-07-22 22:38:32 +01:00
./syncthing-relay.nix
2022-08-20 10:13:25 +01:00
./backups.nix
./blog.cyplo.net.nix
2022-10-01 11:33:56 +01:00
./search.nix
./matrix-front.nix
2022-03-05 14:34:27 +00:00
];
2022-07-25 17:04:03 +01:00
services.dockerRegistry = {
enable = true;
listenAddress = "vpsfree1.raptor-carp.ts.net";
enableGarbageCollect = true;
};
2022-03-05 14:34:27 +00:00
systemd.extraConfig = ''
DefaultTimeoutStartSec=900s
'';
2022-03-06 20:18:50 +00:00
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2022-03-05 14:34:27 +00:00
time.timeZone = "Europe/London";
2022-03-06 20:18:50 +00:00
nix.buildCores = 7;
2022-03-05 14:34:27 +00:00
}