noisebridge-wiki/hosts/wiki/default.nix
Jet 8cfede9f57
Some checks failed
CI / check (push) Has been cancelled
CI / deploy (push) Has been cancelled
feat: init
2026-03-17 04:07:44 -07:00

21 lines
562 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "wiki";
networking.domain = "noisebridge.net";
# VPS typically uses DHCP — override with static IP if needed
networking.useDHCP = true;
# networking.interfaces.ens3 = {
# ipv4.addresses = [{ address = "TODO"; prefixLength = 24; }];
# };
# networking.defaultGateway = { address = "TODO"; interface = "ens3"; };
system.stateVersion = "24.11";
}