1

Refactor home modules into config + options

This commit is contained in:
2023-04-26 12:42:48 +02:00
parent 156f87c077
commit 1b83c0131f
31 changed files with 76 additions and 46 deletions

View File

@ -18,7 +18,7 @@ in {
# Options is a vector of options this module defines
# This module defines only the "emacs" option and suboptions "enable" and "doom"
options.modules.emacs = import ./options.nix { inherit lib; };
options.modules.emacs = import ./options.nix { inherit lib mylib; };
# Config is the merged set of all module configurations
# Here we define what happens to the config if the module is active (but only if the module is active)

View File

@ -1,7 +1,9 @@
{
lib
lib,
mylib
}:
with lib;
with mylib.modules;
{
enable = mkEnableOpt "Emacs module";