nixos/home/common/optional/sops.nix

23 lines
607 B
Nix
Raw Normal View History

2024-05-17 20:17:53 +01:00
{ inputs, config, osConfig, ... }:
2024-05-12 19:58:55 +01:00
let
2024-05-14 14:51:09 +01:00
secretsDirectory = builtins.toString inputs.nix-secrets;
secretsFile = "${secretsDirectory}/secrets.yaml";
2024-05-12 19:58:55 +01:00
homeDirectory = config.home.homeDirectory;
2024-05-17 20:17:53 +01:00
username = config.home.username;
hostname = osConfig.networking.hostName;
2024-05-12 19:58:55 +01:00
in
{
imports = [
inputs.sops-nix.homeManagerModules.sops
];
sops = {
age.sshKeyPaths = ["${homeDirectory}/.ssh/id_ed25519"];
2024-05-12 19:58:55 +01:00
defaultSopsFile = "${secretsFile}";
validateSopsFiles = false;
secrets."ssh_keys/deploy_key/id_ed25519" = {
path = "/home/${username}/.ssh/deploy_key-ssh-ed25519";
};
2024-05-12 19:58:55 +01:00
};
}