18 lines
339 B
Nix
18 lines
339 B
Nix
{ inputs, config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
];
|
|
|
|
sops = {
|
|
defaultSopsFile = ../../secrets/secrets.yaml;
|
|
defaultSopsFormat = "yaml";
|
|
|
|
age = {
|
|
# This is the default location for the age key
|
|
keyFile = "${config.home.homeDirectory}/.config/sops/age/keys.txt";
|
|
};
|
|
};
|
|
}
|