9 lines
254 B
Nix
9 lines
254 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
{
|
|
sops.defaultSopsFile = ../../secrets/secrets.yaml;
|
|
sops.defaultSopsFormat = "yaml";
|
|
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" "/home/johno/.ssh/id_ed25519" ];
|
|
sops.secrets.example_key = {};
|
|
}
|