mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-31 01:32:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { ... }:
 | |
| {
 | |
|   imports = [
 | |
|     ./boot.nix
 | |
|     ./disko-config.nix
 | |
|     ./hardware-configuration.nix
 | |
|     ./network.nix
 | |
|     ./profiles.nix
 | |
|     ./remote-build.nix
 | |
|     ./services.nix
 | |
|     ./system.nix
 | |
|   ];
 | |
| 
 | |
|   networking.hostName = "thinkman";
 | |
| 
 | |
|   sops = {
 | |
|     defaultSopsFile = ./secrets.yaml;
 | |
|     age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
 | |
|     gnupg.sshKeyPaths = [ ];
 | |
|   };
 | |
| 
 | |
|   # needed for cross-compilation
 | |
|   boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
 | |
| 
 | |
|   system = {
 | |
|     stateVersion = "24.05";
 | |
|     autoUpgrade.enable = true;
 | |
|   };
 | |
| }
 | 
