nix-dotfiles/programs/ssh/default.nix

9 lines
122 B
Nix
Raw Normal View History

2023-11-20 10:28:36 -08:00
{ config, pkgs, ... }:
{
programs.ssh.enable = true;
home.packages = with pkgs; [
sshfs # SSH File system
];
}