13 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   flake.modules.nixos.base =
 | |
|     { hostConfig, ... }:
 | |
|     {
 | |
|       networking = {
 | |
|         hostName = hostConfig.name;
 | |
| 
 | |
|         networkmanager = {
 | |
|           enable = true;
 | |
|         };
 | |
|       };
 | |
|     };
 | |
| }
 |