First ssh agent try

This commit is contained in:
Alexandre 2025-12-14 00:49:09 +01:00
parent 7eac7a0f98
commit 09bd215e5f
3 changed files with 10 additions and 3 deletions

View File

@ -62,7 +62,5 @@
name = "Alexandre"; name = "Alexandre";
}; };
}; };
}; };:
} }

View File

@ -7,5 +7,6 @@
../../modules/nixos/gamming/nvidia.nix # Nvidia (Drivers and Settings) ../../modules/nixos/gamming/nvidia.nix # Nvidia (Drivers and Settings)
../../modules/nixos/gamming/steam.nix # For Steam/Proton/Lutris/MangoHUD/Heroic/Bottles ../../modules/nixos/gamming/steam.nix # For Steam/Proton/Lutris/MangoHUD/Heroic/Bottles
../../modules/common/spotify.nix # Spotify/Spicetify ../../modules/common/spotify.nix # Spotify/Spicetify
../../modules/common/ssh.nix
]; ];
} }

8
modules/common/ssh.nix Normal file
View File

@ -0,0 +1,8 @@
{
# The OpenSSH agent
service.ssh-agent = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
};
}