8 lines
226 B
Nix
8 lines
226 B
Nix
{ pkgs, ... }@all: with all; {
|
|
imports = [ inputs.sops-nix.homeManagerModules.sops ];
|
|
sops = {
|
|
age.keyFile = "${hyper.home}/vault/age/sopsnix-${hyper.host}-home.key";
|
|
defaultSopsFile = ../sops-secrets.yaml;
|
|
};
|
|
}
|