nix-config/hosts/cloud/default.nix

22 lines
428 B
Nix
Raw Normal View History

2025-01-19 20:46:38 +01:00
{ config, ... }:
2025-01-11 03:55:19 +01:00
{
imports = [
2025-01-02 18:23:46 +00:00
./configuration.nix
./hardware-configuration.nix
./networking.nix
2025-01-13 21:04:48 +01:00
./proxy
2025-01-02 18:23:46 +00:00
];
2025-01-19 20:46:38 +01:00
sops.defaultSopsFile = ./secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
sops.secrets = {
"wg/0xa-mgmt" = {
owner = config.users.users.systemd-network.name;
};
"wg/0xa-proxy" = {
owner = config.users.users.systemd-network.name;
};
};
2025-01-02 18:23:46 +00:00
}