1
0
Fork 0

Users: enable ssh-agent

This commit is contained in:
Aires 2024-11-30 16:07:40 -05:00
parent c07675f099
commit 86aa025006

View file

@ -94,9 +94,14 @@ in
update = "upgrade";
upgrade = "nos --update";
};
loginExtra = "fastfetch --memory-percent-green 75 --memory-percent-yellow 90";
loginExtra = ''
fastfetch --memory-percent-green 75 --memory-percent-yellow 90
'';
};
};
# Run the SSH agent on login
services.ssh-agent.enable = true;
};
}