hosts/db-pg17/default.nix: add base config

This commit is contained in:
2025-07-08 22:25:57 -07:00
parent 926f9f188b
commit bed61ee8a5

18
hosts/db-pg17/default.nix Normal file
View File

@@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
{
networking.hostName = "db-pg17";
network.routingType = "dynamic";
network.hardwareAddress = "bc:24:11:15:d0:d4";
qemu.enable = true;
spice.enable = true;
base.userSSHKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDyi9TFKaEVrO4Gl7/t47PERjOiN3WHMD29UgZV5gm4G etorres@xenon"
];
dbserver-postgresql = {
enable = true;
ansibleLibPackage = pkgs.python312Packages.psycopg2;
};
}