Files
nix/hosts/common/configs/user/console/ssh/default.nix
2025-02-25 12:28:22 +00:00

9 lines
163 B
Nix

{
user ? throw "user argument is required",
home ? throw "home argument is required",
}:
{ ... }:
{
home-manager.users.${user}.programs.ssh.enable = true;
}