18 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  lib,
 | 
						|
  pkgs,
 | 
						|
  inputs,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  imports = [
 | 
						|
    ./firefox.nix
 | 
						|
    ./bookmarks.nix
 | 
						|
    ./harden.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  config = {
 | 
						|
    programs.firefox = {
 | 
						|
      enable = true;
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |