9 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
let
 | 
						|
  cfg = config.homeModules.console.shell.bash;
 | 
						|
in
 | 
						|
{
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    programs.bash.enable = true;
 | 
						|
  };
 | 
						|
}
 |