mirror of
				https://github.com/Jokiller230/puzzlevision.git
				synced 2025-10-31 13:50:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, config, ... }:
 | |
| let
 | |
|   inherit (lib) mkIf;
 | |
| in
 | |
| {
 | |
|   programs.firefox = mkIf config.programs.firefox.enable {
 | |
|     # Required settings for Onebar
 | |
|     profiles.default.settings = {
 | |
|       "toolkit.legacyUserProfileCustomizations.stylesheets" = true;
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   home.file.".mozilla/firefox/default/chrome/userChrome.css".text =
 | |
|     mkIf config.programs.firefox.enable ''
 | |
|       @import "onebar/onebar.css";
 | |
|     '';
 | |
| 
 | |
|   home.file.".mozilla/firefox/default/chrome/onebar/onebar.css".source =
 | |
|     mkIf config.programs.firefox.enable ./onebar.css;
 | |
| }
 |