nixos-config/lib/sops.nix

54 lines
1.4 KiB
Nix
Raw Normal View History

# A library specifically for environments with sops-nix.
2024-02-25 14:27:05 +00:00
{ pkgs, lib }:
{
/* Get the secrets from a given sops file. This will set the individual
attributes `sopsFile` with the given file to not interrupt as much as
possible with your own sops-nix workflow.
Examples:
lib.getSecrets ./sops.yaml {
ssh-key = { };
"borg/ssh-key" = { };
"wireguard/private-key" = {
group = config.users.users.systemd-network.group;
reloadUnits = [ "systemd-networkd.service" ];
mode = "0640";
};
}
*/
getSecrets = sopsFile: secrets:
let
getKey = key: { inherit key sopsFile; };
in
2024-02-25 14:27:05 +00:00
pkgs.lib.mapAttrs
(path: attrs:
(getKey path) // attrs)
secrets;
/* Prepend a prefix for the given secrets. This allows a workflow for
separate sops file.
Examples:
lib.getSecrets ./sops.yaml {
ssh-key = { };
"borg/ssh-key" = { };
} //
(lib.getSecrets ./wireguard.yaml
(lib.attachSopsPathPrefix "wireguard" {
"private-key" = {
group = config.users.users.systemd-network.group;
reloadUnits = [ "systemd-networkd.service" ];
mode = "0640";
};
}))
*/
attachSopsPathPrefix = prefix: secrets:
2024-02-25 14:27:05 +00:00
pkgs.lib.mapAttrs'
(key: settings:
2024-02-25 14:27:05 +00:00
pkgs.lib.nameValuePair
"${prefix}/${key}"
({ inherit key; } // settings))
secrets;
}