Olaf Kolkman fbd41a72f1
First Try
2025-05-06 19:41:26 +02:00

30 lines
882 B
Nix

{ config, pkgs, agenix, secrets, ... }:
let user = "%USER%"; in
{
age.identityPaths = [
"/home/${user}/.ssh/id_ed25519"
];
# Your secrets go here
#
# Note: the installWithSecrets command you ran to boostrap the machine actually copies over
# a Github key pair. However, if you want to store the keypair in your nix-secrets repo
# instead, you can reference the age files and specify the symlink path here. Then add your
# public key in shared/files.nix.
#
# If you change the key name, you'll need to update the SSH configuration in shared/home-manager.nix
# so Github reads it correctly.
#
# age.secrets."github-ssh-key" = {
# symlink = false;
# path = "/home/${user}/.ssh/id_github";
# file = "${secrets}/github-ssh-key.age";
# mode = "600";
# owner = "${user}";
# group = "wheel";
# };
}