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 = {
|
config = {
|
||||||
programs.keychain = {
|
programs.keychain = {
|
||||||
enable = true;
|
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 = {
|
home.sessionVariables = {
|
||||||
|
|
Loading…
Reference in a new issue