nix-config/hosts/franz/sops.nix

17 lines
276 B
Nix
Raw Normal View History

{ pkgs
, inputs
, ...
}: {
2024-03-03 20:04:13 +01:00
imports = [
inputs.sops-nix.nixosModules.sops
];
environment.systemPackages = with pkgs; [ sops ];
2024-03-03 20:04:13 +01:00
sops = {
defaultSopsFile = ../../secrets/franz.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/sops-nix/sops.txt";
};
2024-03-03 20:04:13 +01:00
}