22 lines
403 B
Nix
22 lines
403 B
Nix
{ config, pkgs, inputs, lib, ... }:
|
|
{
|
|
networking.hostName = "vpsfree1";
|
|
|
|
imports = [
|
|
./vpsfree1-vpsadminos.nix
|
|
./tailscale-vpsfree1.nix
|
|
../cli.nix
|
|
../../server-security.nix
|
|
../../tailscale.nix
|
|
];
|
|
|
|
systemd.extraConfig = ''
|
|
DefaultTimeoutStartSec=900s
|
|
'';
|
|
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
time.timeZone = "Europe/London";
|
|
|
|
nix.buildCores = 7;
|
|
}
|
|
|