porcorosso-wsl: don't try to load ed25519, use genie
This commit is contained in:
parent
82d96db444
commit
7f587564de
1 changed files with 9 additions and 1 deletions
|
@ -5,7 +5,15 @@
|
|||
config = {
|
||||
programs.keychain = {
|
||||
enable = true;
|
||||
keys = [ "id_ed25519" ];
|
||||
};
|
||||
|
||||
programs.bash = {
|
||||
initExtra = lib.mkBefore ''
|
||||
if [[ ! -v INSIDE_GENIE ]]; then
|
||||
echo "Starting genie:"
|
||||
exec /usr/bin/genie -s
|
||||
fi
|
||||
'';
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
|
|
Loading…
Reference in a new issue