21 lines
399 B
Nix
21 lines
399 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
../../modules/network.nix
|
|
../../modules/ssh.nix
|
|
../../modules/wireguard.nix
|
|
../../modules/headscale.nix
|
|
|
|
../../modules/http-forwarding.nix
|
|
];
|
|
|
|
network.node = "vps";
|
|
networking.hostName = "vps";
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
system.stateVersion = "26.05";
|
|
}
|