nichts/modules/services/ssh.nix

15 lines
327 B
Nix
Raw Normal View History

2024-04-12 20:59:27 +02:00
{ config, lib, pkgs, ... }:
with lib; let
2024-04-13 15:38:42 +02:00
cfg = config.modules.programs.ssh;
username = config.modules.other.system.username;
in {
2024-04-13 15:38:42 +02:00
options.modules.programs.ssh.enable = mkEnableOption "ssh";
config = mkIf cfg.enable {
programs.ssh = {
startAgent = true;
};
};
}