add sops as a shared module for home-manager

also adds wakatime-api-key variable to personal sops-config (using new
sops capability)

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-05-21 01:01:07 -04:00
committed by Alice Huston
parent aa4bcc61a4
commit b10992795e
4 changed files with 15 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ lib, ... }:
{ lib, sops-nix, ... }:
{
boot.default = lib.mkDefault true;
@ -18,5 +18,6 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
sharedModules = [ sops-nix.homeManagerModules.sops ];
};
}