2026-07-11 14:56:13 -04:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
2026-07-11 16:28:11 -04:00
|
|
|
./hardware-configuration.nix
|
|
|
|
|
|
|
|
|
|
../../modules/network.nix
|
|
|
|
|
../../modules/ssh.nix
|
|
|
|
|
../../modules/wireguard.nix
|
2026-07-29 18:21:26 -04:00
|
|
|
../../modules/headscale.nix
|
2026-07-12 08:20:56 -04:00
|
|
|
|
2026-07-11 16:28:11 -04:00
|
|
|
../../modules/http-forwarding.nix
|
2026-07-11 14:56:13 -04:00
|
|
|
];
|
|
|
|
|
|
2026-07-11 16:28:11 -04:00
|
|
|
network.node = "vps";
|
2026-07-11 14:56:13 -04:00
|
|
|
networking.hostName = "vps";
|
|
|
|
|
|
2026-07-11 16:28:11 -04:00
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
2026-07-11 14:56:13 -04:00
|
|
|
system.stateVersion = "26.05";
|
|
|
|
|
}
|