Rename nixos-server to sunken-ship

- Rename hosts/nixos-server.nix -> sunken-ship.nix, nixos-server-hardware.nix -> sunken-ship-hardware.nix
- Flake: nixos-server -> sunken-ship, update module path
- Set networking.hostName = sunken-ship in server configs
- Update AGENTS.md, nixos/readme.md, docs/ssh-and-secrets.md, TODO.md

Made-with: Cursor
This commit is contained in:
DannyDannyDanny 2026-03-01 12:44:28 +01:00
parent cd7658f452
commit 1338fb1b68
9 changed files with 19 additions and 25 deletions

View file

@ -7,13 +7,13 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nixos-server";
networking.hostName = "sunken-ship";
time.timeZone = "Europe/Copenhagen";
users.users.danny = {
isNormalUser = true;
extraGroups = [ "wheel" ];
# After install, add keys via scp (see server-quickstart or nixos-server.nix comment).
# After install, add keys via scp (see server-quickstart or sunken-ship.nix comment).
};
services.openssh.enable = true;