refactor(base profile): move base profile configurations into modules

This commit is contained in:
ooks-io 2024-04-01 15:00:37 +13:00
parent 51e9493c62
commit 692b18c0f6
7 changed files with 124 additions and 63 deletions

View file

@ -1,7 +1,20 @@
{ lib, ... }:
{
imports = [
./fonts
./monitors
./wallpaper
./nix
./userDirs
./home
./nixColors
];
options.homeModules.config = {
nix.enable = lib.mkEnableOption "enable nix configuration module";
nixColors.enable = lib.mkEnableOption "enable nixColors configuration module";
home.enable = lib.mkEnableOption "enable home configuration module";
userDirs.enable = lib.mkEnableOption "enable userDirs configuration module";
};
}