hosts/db-pg17/default.nix: add base config
This commit is contained in:
18
hosts/db-pg17/default.nix
Normal file
18
hosts/db-pg17/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user