Refactor various NixOS and home-manager configurations to improve consistency and readability. Correct naming inconsistencies, ensure proper indentation, and restructure Samba settings for better clarity and maintainability.
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			455 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			455 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, config, ... }:
 | |
| {
 | |
|   home.sessionPath = [ "$HOME/bin" ];
 | |
| 
 | |
|   metacfg = {
 | |
|     user = {
 | |
|       enable = true;
 | |
|       name = config.snowfallorg.user.name;
 | |
|     };
 | |
|     cli-apps = {
 | |
|       bash.enable = true;
 | |
|       fish.enable = true;
 | |
|       neovim.enable = true;
 | |
|       bat.enable = true;
 | |
|       starship.enable = true;
 | |
|       home-manager.enable = true;
 | |
|     };
 | |
|     tools = {
 | |
|       git.enable = true;
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   xdg.enable = true;
 | |
|   xdg.mime.enable = true;
 | |
| }
 |