chore: update lock file

This commit is contained in:
Artur Manuel 2024-10-29 15:37:11 +00:00
commit 0226353025
17 changed files with 425 additions and 86 deletions

16
computers/shared/ssh.nix Normal file
View file

@ -0,0 +1,16 @@
{
config,
lib,
...
}: let
cfg = config.alqueva.openssh;
in {
options.alqueva.openssh = {
enable = lib.mkEnableOption "OpenSSH";
};
config = lib.mkIf cfg.enable {
programs.ssh.enableAskPassword = true;
services.openssh.enable = true;
};
}