Adding mini-watcher

This commit is contained in:
Gene Liverman 2024-01-26 23:57:27 -05:00
parent 79648976a5
commit 5fbfb7ed7e
5 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{ pkgs, hostname, username, ... }: {
home.packages = with pkgs; [
home-manager
];
sops = {
age.keyFile = /home/${username}/.config/sops/age/keys.txt;
defaultSopsFile = ../hosts/${hostname}/secrets.yaml;
secrets = {
local_git_config.path = "/home/${username}/.gitconfig-local";
local_private_env.path = "/home/${username}/.private-env";
};
};
}