mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-31 01:32:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			558 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			558 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   config,
 | |
|   lib,
 | |
|   pkgs,
 | |
|   ...
 | |
| }:
 | |
| let
 | |
|   cfg = config.my.profiles.sway-theme;
 | |
| in
 | |
| {
 | |
|   options.my.profiles.sway-theme = with lib; {
 | |
|     enable = mkEnableOption "sway-theme profile";
 | |
|   };
 | |
| 
 | |
|   config = lib.mkIf cfg.enable {
 | |
|     environment.systemPackages = with pkgs; [
 | |
|       gtk-engine-murrine
 | |
|       gtk_engines
 | |
|       gsettings-desktop-schemas
 | |
|       lxappearance
 | |
|       qgnomeplatform
 | |
|       numix-cursor-theme
 | |
|       numix-icon-theme
 | |
|       numix-icon-theme-circle
 | |
|       adwaita-qt
 | |
|       arc-kde-theme
 | |
|       arc-theme
 | |
|     ];
 | |
|     qt.platformTheme = "qt5ct";
 | |
|   };
 | |
| }
 | 
