nyx/secrets/secrets.nix

13 lines
238 B
Nix
Raw Normal View History

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