mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 22:29:06 +01:00
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{
|
|
config,
|
|
osConfig,
|
|
inputs,
|
|
self,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.custom.sops;
|
|
in
|
|
{
|
|
imports = [ inputs.sops.homeModules.sops ];
|
|
|
|
options.custom.sops = {
|
|
enable = lib.mkEnableOption "";
|
|
agePublicKey = lib.mkOption {
|
|
type = lib.types.nonEmptyStr;
|
|
default =
|
|
"${self}/users/${config.home.username}/@${osConfig.networking.hostName}/keys/age.pub"
|
|
|> lib.readFile
|
|
|> lib.trim;
|
|
};
|
|
secretsFile = lib.mkOption {
|
|
type = self.lib.types.existingPath;
|
|
default = "${self}/users/${config.home.username}/@${osConfig.networking.hostName}/secrets.json";
|
|
};
|
|
secrets = lib.mkOption {
|
|
type = lib.types.anything;
|
|
default = cfg.secretsFile |> lib.readFile |> lib.strings.fromJSON;
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
sops = {
|
|
age.sshKeyPaths = [ "${config.home.homeDirectory}/.ssh/id_ed25519" ];
|
|
defaultSopsFile = cfg.secretsFile;
|
|
};
|
|
|
|
assertions =
|
|
config.sops.secrets
|
|
|> lib.attrNames
|
|
|> lib.map (secretPath: {
|
|
assertion = cfg.secrets |> lib.hasAttrByPath (secretPath |> lib.splitString "/");
|
|
message = "Sops secret `${secretPath}` must be defined in secrets.json";
|
|
});
|
|
};
|
|
}
|