GHOSCHT
0c8b4ccfa9
/home partition of lvm wasn't mounted and sops-nix couldn't find the key in that unmounted partition
16 lines
276 B
Nix
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";
|
|
};
|
|
}
|