treewide: ssh as program inited

This commit is contained in:
hand7s 2025-04-27 12:59:28 +03:00
parent fbf608d222
commit 7c74535c02
No known key found for this signature in database
4 changed files with 22 additions and 0 deletions

View file

@ -48,6 +48,7 @@
./programs/gamemode.nix
./programs/nh.nix
./programs/steam.nix
./programs/ssh.nix
./security/polkit.nix
./security/rtkit.nix

View file

@ -0,0 +1,10 @@
{
...
}: {
programs = {
ssh = {
startAgent = true;
agentTimeout = "30m";
};
};
}