5a1109111b
* hax * hax * shell monitoring * hax radicale! * hacking * haxor * hax * hack * feat: refactor paths etc for impermance * fix: restic * hax * more hax * feat: migrate z2m --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
16 lines
365 B
Nix
16 lines
365 B
Nix
{ config, ... }:
|
|
{
|
|
|
|
sops.age.sshKeyPaths = [ "/etc/ssh/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;
|
|
};
|
|
|
|
}
|