mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
sumireko: SSH
This commit is contained in:
parent
47bdada7e8
commit
92719f88ce
1 changed files with 9 additions and 4 deletions
|
|
@ -81,12 +81,17 @@ _: let
|
|||
]
|
||||
];
|
||||
};
|
||||
home.file.".orbstack/ssh/authorized_keys".text =
|
||||
(string.concatSep "\n" tree.kat.user.data.keys)
|
||||
+ ''
|
||||
home.file = {
|
||||
".orbstack/ssh/authorized_keys".text =
|
||||
(string.concatSep "\n" tree.kat.user.data.keys)
|
||||
+ ''
|
||||
|
||||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILW2V8yL2vC/KDmIQdxhEeevKo1vGG18bvMNj9mLL/On
|
||||
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILW2V8yL2vC/KDmIQdxhEeevKo1vGG18bvMNj9mLL/On
|
||||
'';
|
||||
".ssh/authorized_keys".text = ''
|
||||
${string.concatSep "\n" tree.kat.user.data.keys}
|
||||
'';
|
||||
};
|
||||
programs = {
|
||||
zsh = {
|
||||
initExtra = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue