fix: SSH key fixes

This commit is contained in:
Madeleine Sydney
2025-02-18 21:11:43 -07:00
parent eceb06c654
commit b4a9bd2d89
10 changed files with 23 additions and 5 deletions

9
users/lain/files.nix Normal file
View File

@@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
let mutableSymlink = config.lib.file.mkOutOfStoreSymlink;
in {
home.file.".ssh/id_ed25519".source =
mutableSymlink "/persist/private-keys/ssh/lain-at-deertopia";
home.file.".ssh/id_ed25519.pub".source =
../../public-keys/ssh/lain-at-deertopia.pub;
}