mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-31 01:32:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			436 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			436 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { ... }:
 | |
| {
 | |
|   imports = [
 | |
|     ./disko-config.nix
 | |
|     ./hardware-configuration.nix
 | |
|     ./network.nix
 | |
|     ./nixinate.nix
 | |
|     ./services.nix
 | |
|     ./syncthing.nix
 | |
|     ./system.nix
 | |
|     ./wifi.nix
 | |
|   ];
 | |
| 
 | |
|   networking.hostName = "serverle";
 | |
| 
 | |
|   sops = {
 | |
|     defaultSopsFile = ./secrets.yaml;
 | |
|     # disable gpg and thereby enable age
 | |
|     gnupg.sshKeyPaths = [ ];
 | |
|   };
 | |
| 
 | |
|   system = {
 | |
|     stateVersion = "24.05";
 | |
|     autoUpgrade.enable = true;
 | |
|   };
 | |
| }
 | 
