- Move user programs out of systems section and int user section - Install user packages with home manager rather than system wide
		
			
				
	
	
		
			8 lines
		
	
	
		
			82 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			82 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  home.packages = (with pkgs; [
 | 
						|
    vscode
 | 
						|
  ]);
 | 
						|
}
 |