8 lines
162 B
Nix
8 lines
162 B
Nix
|
# My SSH public keys
|
||
|
{ ... }:
|
||
|
|
||
|
rec {
|
||
|
frog = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKMZzRdcrHTuCPoaFy36MPr5IW/hnImlse/OBOn6udL/ tazjin@frog";
|
||
|
all = [ frog ];
|
||
|
}
|