mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
Adding mini-watcher
This commit is contained in:
parent
79648976a5
commit
5fbfb7ed7e
5 changed files with 78 additions and 0 deletions
15
modules/home-manager/common/hm-sops.nix
Normal file
15
modules/home-manager/common/hm-sops.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue