21 lines
		
	
	
		
			295 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			295 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  pkgs,
 | 
						|
  lib,
 | 
						|
  ...
 | 
						|
}: {
 | 
						|
  home.packages = lib.mkIf pkgs.stdenv.isLinux (with pkgs; [
 | 
						|
    imv
 | 
						|
    betterdiscordctl
 | 
						|
    vesktop
 | 
						|
    xdg-utils
 | 
						|
    mcrcon
 | 
						|
    xfce.thunar
 | 
						|
    pavucontrol
 | 
						|
    godot
 | 
						|
    aseprite
 | 
						|
    gpu-screen-recorder
 | 
						|
    gpu-screen-recorder-gtk
 | 
						|
    # ungoogled-chromium
 | 
						|
  ]);
 | 
						|
}
 |