formatting

This commit is contained in:
John Lancaster
2026-03-15 16:15:17 -05:00
parent 8735ef24d5
commit 2ace9cd2dd

View File

@@ -17,6 +17,7 @@ in
sops sops
docker docker
desktop desktop
step-ssh-user
]; ];
targets.genericLinux.enable = true; targets.genericLinux.enable = true;
@@ -42,13 +43,20 @@ in
homeManagerFlakeDir = flakeDir; homeManagerFlakeDir = flakeDir;
docker.enable = true; docker.enable = true;
ssh.certificates.enable = true;
ssh.matchSets = { step-ssh-user = {
enable = true;
principals = ["root" "${username}" "appdaemon"];
};
ssh = {
certificates.enable = true;
matchSets = {
certs = true; certs = true;
appdaemon = true; appdaemon = true;
homelab = true; homelab = true;
dev = true; dev = true;
}; };
};
sops.secrets."restic_password/john_ubuntu" = { sops.secrets."restic_password/john_ubuntu" = {
path = "${config.xdg.configHome}/resticprofile/password.txt"; path = "${config.xdg.configHome}/resticprofile/password.txt";
}; };