Add SOPS on AirPuppet

This commit is contained in:
Gene Liverman 2023-12-18 22:12:17 -05:00 committed by Gene Liverman
parent af5b45682d
commit 13989473a7
4 changed files with 36 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, genebean-omp-themes, ... }: {
{ pkgs, genebean-omp-themes, sops-nix, username, ... }: {
home.stateVersion = "23.11";
imports = [
../../common/all-cli.nix
@ -6,4 +6,11 @@
../../common/all-darwin.nix
];
sops = {
defaultSopsFile = ./secrets.yaml;
secrets = {
local_git_config.path = "/Users/${username}/.gitconfig-local";
local_private_env.path = "/Users/${username}/.private-env";
};
};
}