ccd8e800df
* hacking at dns * hack * hax * start dics! * hacking * feat: docs! --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
16 lines
403 B
Nix
16 lines
403 B
Nix
{ config, ... }:
|
|
{
|
|
|
|
sops.age.sshKeyPaths = [ "${config.mySystem.system.impermanence.sshPath}/ssh_host_ed25519_key" ];
|
|
# Secret for machine-specific pushover
|
|
sops.secrets."services/pushover/env" = {
|
|
sopsFile = ./secrets.sops.yaml;
|
|
};
|
|
sops.secrets.pushover-user-key = {
|
|
sopsFile = ./secrets.sops.yaml;
|
|
};
|
|
sops.secrets.pushover-api-key = {
|
|
sopsFile = ./secrets.sops.yaml;
|
|
};
|
|
|
|
}
|