19 lines
327 B
Nix
19 lines
327 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
|
|
'';
|
|
|
|
time.timeZone = "Europe/London";
|
|
}
|
|
|