chore: update lock file
This commit is contained in:
parent
9c64f21bbc
commit
0226353025
17 changed files with 425 additions and 86 deletions
16
computers/shared/ssh.nix
Normal file
16
computers/shared/ssh.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue