mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
11 lines
258 B
Nix
11 lines
258 B
Nix
{ config }:
|
|
{
|
|
age.keyFile = "/home${config.home.username}/.config/sops/age/keys.txt";
|
|
defaultSopsFile = ../../secrets.yaml;
|
|
secrets.hosts = {
|
|
format = "binary";
|
|
sopsFile = ../../secrets/hosts;
|
|
owner = "${config.home.username}"
|
|
};
|
|
}
|