nix-dotfiles/hosts/modules/ssh.nix
2026-03-02 03:38:24 -07:00

10 lines
190 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
sshfs
];
services.openssh.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}