new profile catagory: theme. refactor modules for wallpaper, fonts, gtk, and qt. adjusted modules that depend on old theming modules
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
let
 | 
						|
  cfg = config.homeModules.theme.qt;
 | 
						|
in
 | 
						|
{
 | 
						|
  options.homeModules.theme.qt.enable = lib.mkEnableOption "Enable qt module";
 | 
						|
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    qt = {
 | 
						|
      enable = true;
 | 
						|
      platformTheme = "gtk";
 | 
						|
      };
 | 
						|
  };
 | 
						|
}
 | 
						|
 |