update: reformat nixosModules options

This commit is contained in:
Veneficium 2024-09-08 12:57:31 +02:00
parent 0ba3786557
commit 2531504b58
19 changed files with 50 additions and 43 deletions

View file

@ -1,7 +1,7 @@
{ config, lib, ... }: {
options.settings = {
services.openssh.enable = lib.mkEnableOption "enable openSSH";
services.openssh.usePAM = lib.mkEnableOption "use PAM for ssh authentication";
options.settings.services.openssh = {
enable = lib.mkEnableOption "enable openSSH";
usePAM = lib.mkEnableOption "use PAM for ssh authentication";
};