new profile catagory: theme. refactor modules for wallpaper, fonts, gtk, and qt. adjusted modules that depend on old theming modules
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			449 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			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";
 | |
|   };
 | |
| }
 |