 deb28cf0b1
			
		
	
	
		deb28cf0b1
		
	
	
	
	
		
			
			- Create container nixos profile - Create lxc-container nixos config using container nixos profile - Docker nixos image, use nixos profile for its base config
		
			
				
	
	
		
			20 lines
		
	
	
		
			374 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			374 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, pkgs, ... }:
 | |
| 
 | |
| {
 | |
|   imports = [
 | |
|     ../profiles/container.nix
 | |
|   ];
 | |
| 
 | |
|   boot.postBootCommands =
 | |
|     ''
 | |
|       # Set virtualisation to docker
 | |
|       echo "docker" > /run/systemd/container
 | |
|     '';
 | |
| 
 | |
|   # Iptables do not work in Docker.
 | |
|   networking.firewall.enable = false;
 | |
| 
 | |
|   # Socket activated ssh presents problem in Docker.
 | |
|   services.openssh.startWhenNeeded = false;
 | |
| }
 |