Add hetznix02 via nixos-anywhere

This commit is contained in:
Gene Liverman 2024-09-04 22:53:54 -04:00
parent 5cf6172925
commit 7e9f4d5adb
10 changed files with 280 additions and 36 deletions

View file

@ -0,0 +1,20 @@
{ username, ... }: {
sops = {
age.keyFile = /home/${username}/.config/sops/age/keys.txt;
defaultSopsFile = ../secrets.yaml;
secrets = {
local_git_config = {
owner = "${username}";
path = "/home/${username}/.gitconfig-local";
};
local_private_env = {
owner = "${username}";
path = "/home/${username}/.private-env";
};
tailscale_key = {
restartUnits = [ "tailscaled-autoconnect.service" ];
};
};
};
}