{ lib, pkgs, ... }: { imports = [ ./hardware.nix ./services.nix ]; environment.pathsToLink = ["/cgit"]; environment.systemPackages = with pkgs; [ emacs-nox certbot cgit ]; this.sets = { cli.tools.full = true; net.tools.full = true; }; networking.domain = "alef.zoar.cx"; this.server.enable = true; documentation.man.generateCaches = lib.mkForce false; time.timeZone = "US/Pacific"; this.buildMachines = ["pinto"]; this.hosts = { alef.zoar.cx = true; mine = true; yggdrasil.public = true; yggdrasil.private = true; }; documentation = { nixos.enable = false; }; users.users.root = { initialPassword = "CHANGEME"; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAaWi0NLEaH9wsYz7hVYHqIHf0Oq+0gZ5fVznE6DGE9t" ]; }; system.stateVersion = "24.11"; }