summaryrefslogtreecommitdiff
path: root/home-modules/sops.nix
blob: b1a62ca1cc0fc33ccd307fb03e09f002bc2c2f63 (plain)
1
2
3
4
5
6
7
8
9
10
{ flakeInputs, config, ... }:
{
  imports = [ flakeInputs.sops-nix.homeManagerModules.sops ];

  config = {
    sops = {
      age.keyFile = config.home.homeDirectory + "/.config/sops/age/keys.txt";
    };
  };
}