feat: init
This commit is contained in:
commit
8cfede9f57
28 changed files with 2129 additions and 0 deletions
21
hosts/wiki/default.nix
Normal file
21
hosts/wiki/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue