noisebridge-wiki/hosts/wiki-replica/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

16 lines
320 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "wiki-replica";
networking.domain = "noisebridge.net";
networking.useDHCP = true;
system.stateVersion = "24.11";
}