nix-config/hosts/franz/sops.nix
GHOSCHT 0c8b4ccfa9
Fix sops-nix failure after reboot
/home partition of lvm wasn't mounted and sops-nix couldn't find the key
in that unmounted partition
2024-12-25 22:37:51 +01:00

16 lines
276 B
Nix

{ pkgs
, inputs
, ...
}: {
imports = [
inputs.sops-nix.nixosModules.sops
];
environment.systemPackages = with pkgs; [ sops ];
sops = {
defaultSopsFile = ../../secrets/franz.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/sops-nix/sops.txt";
};
}