ooknet/home/modules/config/default.nix
ooks-io f5e87f2a79 refactor: major theme refactor
new profile catagory: theme. refactor modules for wallpaper, fonts, gtk,
and qt. adjusted modules that depend on old theming modules
2024-04-06 22:38:54 +13:00

18 lines
449 B
Nix

{ lib, ... }:
{
imports = [
./monitors
./nix
./userDirs
./home
./mimeApps
];
options.homeModules.config = {
nix.enable = lib.mkEnableOption "enable nix configuration module";
home.enable = lib.mkEnableOption "enable home configuration module";
userDirs.enable = lib.mkEnableOption "enable userDirs configuration module";
mimeApps.enable = lib.mkEnableOption "enable mimeApps configuration module";
};
}