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
|
2025-02-05 20:15:25 +00:00
|
|
|
./irc.nix
|
2025-01-02 18:23:46 +00:00
|
|
|
./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
|
|
|
}
|