Start of new hmgr module

This commit is contained in:
Julien Malka 2021-12-14 21:40:47 +01:00
parent d2844e4385
commit ce905cacf2

14
modules/hmgr/default.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, pkgs, lib, ... }:
let
cfg = options.luj.hmgr;
in with lib;
{
options.luj.hmgr = mkOption {
description = "";
type = with types; attrsOf (submodule {
enable = mkEnableOption "enable hmngr for some user";
});
};
config = lib.mapAttrs (name: value: test) cfg;
}