added support for keys in external files
This commit is contained in:
15
nix/hm-module.nix
Normal file
15
nix/hm-module.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.dyn-gandi;
|
||||
in {
|
||||
|
||||
options.dyn-gandi = {
|
||||
enable = lib.mkEnableOption null // {
|
||||
description = lib.mdDoc '''';
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user