When using Docker from the Nix store, I couldn't connect to it so I uninstalled it and added it using the https://get.docker.com script. I'm no longer using Docker Compose v1, so I can also remove the `docker-compose` package.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			351 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			351 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../home-manager/modules/common.nix
 | 
						|
    ../../home-manager/modules/git.nix
 | 
						|
    ../../home-manager/modules/home-manager.nix
 | 
						|
    ../../home-manager/modules/tmux.nix
 | 
						|
    ../../home-manager/modules/zsh.nix
 | 
						|
  ];
 | 
						|
 | 
						|
  fonts.fontconfig.enable = true;
 | 
						|
 | 
						|
  home.packages = with pkgs; [
 | 
						|
    jetbrains-mono
 | 
						|
  ];
 | 
						|
}
 |