feat: msyds ssh keys

This commit is contained in:
2025-11-23 03:00:59 -07:00
parent 1c60564a1e
commit 721ac95a18
4 changed files with 9 additions and 8 deletions

View File

@@ -12,9 +12,9 @@ in lib.mkMerge [
# home.file."private-keys/ssh/crumb-at-nixos-testbed".source =
# mutableSymlink "/persist/private-keys/ssh/crumb-at-nixos-testbed";
home.file.".ssh/id_ed25519".source =
mutableSymlink "/persist/private-keys/ssh/msyds";
home.file."private-keys/ssh/msyds".source =
mutableSymlink "/persist/private-keys/ssh/msyds";
mutableSymlink "/persist/private-keys/ssh/msyds-old";
home.file."private-keys/ssh/msyds-old".source =
mutableSymlink "/persist/private-keys/ssh/msyds-old";
# Similarly, public keys are linked where SSH will find them as well as a
@@ -24,9 +24,9 @@ in lib.mkMerge [
# home.file."public-keys/ssh/crumb-at-nixos-testbed".source =
# ../../public-keys/ssh/crumb-at-nixos-testbed.pub;
home.file.".ssh/id_ed25519.pub".source =
../../public-keys/ssh/msyds.pub;
home.file."public-keys/ssh/msyds".source =
../../public-keys/ssh/msyds.pub;
../../public-keys/ssh/msyds-old.pub;
home.file."public-keys/ssh/msyds-old".source =
../../public-keys/ssh/msyds-old.pub;
}
{