forked from DGNum/infrastructure
modules: Use inherit instead of with
This commit is contained in:
parent
5b4cf12ed7
commit
935d4a5ee5
2 changed files with 12 additions and 4 deletions
|
@ -34,6 +34,14 @@
|
|||
{ config, lib, dgn-lib, meta, name, ... }:
|
||||
|
||||
let
|
||||
inherit (lib)
|
||||
mkDefault
|
||||
mkEnableOption
|
||||
mkIf
|
||||
mkOption
|
||||
|
||||
types;
|
||||
|
||||
nodeMeta = meta.nodes.${name};
|
||||
admins = meta.members.groups.root ++ nodeMeta.admins
|
||||
++ (builtins.concatMap (g: meta.members.groups.${g}) nodeMeta.adminGroups);
|
||||
|
@ -41,8 +49,6 @@ let
|
|||
cfg = config.dgn-access-control;
|
||||
in
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
options.dgn-access-control = {
|
||||
enable = mkEnableOption "DGNum access control." // { default = true; };
|
||||
|
|
|
@ -34,9 +34,11 @@
|
|||
|
||||
{ config, lib, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
inherit (lib)
|
||||
mkEnableOption
|
||||
mkIf;
|
||||
|
||||
cfg = config.dgn-ssh;
|
||||
in
|
||||
|
||||
|
|
Loading…
Reference in a new issue