21 lines
562 B
Nix
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";
|
|
}
|