Create proxmox configuration, create izanagi config, update readme, move configurations to /machines/

This commit is contained in:
Alexander Derevianko
2025-07-31 11:55:28 +02:00
parent 20f36c7842
commit 65e54e0991
23 changed files with 521 additions and 4 deletions
+18
View File
@@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
{
sops = {
defaultSopsFile = ./secrets/secrets.yaml;
age = {
# This will automatically import SSH keys as age keys
sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
# This is using an age key that is expected to already be in the filesystem
keyFile = "/var/lib/sops-nix/key.txt";
# This will generate a new key if the key specified above does not exist
generateKey = true;
# This is the actual specification of the secrets.
};
secrets = { "user_password" = { neededForUsers = true; }; };
};
}