refactor(base profile): move base profile configurations into modules
This commit is contained in:
parent
51e9493c62
commit
692b18c0f6
7 changed files with 124 additions and 63 deletions
|
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue