mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 07:59:43 +00:00
12 lines
299 B
Nix
12 lines
299 B
Nix
{ rootPath, config, ... }:
|
|
|
|
{
|
|
sops.defaultSopsFile = rootPath + /secrets/secrets.yaml;
|
|
sops.defaultSopsFormat = "yaml";
|
|
|
|
sops.age.keyFile = "${config.home.homeDirectory}/.config/sops/age/keys.txt";
|
|
|
|
sops.secrets."wakatime" = {
|
|
path = "${config.home.homeDirectory}/.wakatime.cfg";
|
|
};
|
|
}
|