nyx/secrets/secrets.nix

15 lines
282 B
Nix
Raw Normal View History

{ inputs, lib, ... }:
2024-10-25 13:45:25 +00:00
{
imports = [ inputs.sops-nix.nixosModules.sops ];
2024-10-25 13:45:25 +00:00
sops = {
defaultSopsFile = ./secrets.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/home/pingu/.config/sops/age/keys.txt";
secrets = {
cloudflared.nyx.token = {};
};
2024-10-25 13:45:25 +00:00
};
}