Files
2026-05-09 16:19:05 +05:30

15 lines
243 B
Nix

{ inputs, ... }:
{
imports = [
inputs.sops-nix.nixosModules.sops
];
sops = {
defaultSopsFile = ./secrets.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/home/aditya/.config/sops/age/keys.txt"; # fix home path
};
}