59 lines
		
	
	
		
			985 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			985 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib
 | |
| , pkgs
 | |
| , ...
 | |
| }:
 | |
| let
 | |
|   chromium_discord = pkgs.writeShellScriptBin "chromium_discord" ''
 | |
|     ${lib.getExe pkgs.ungoogled-chromium} --socket=wayland org.chromium.Chromium --app=https://discordapp.com/channels/@me
 | |
|   '';
 | |
| in
 | |
| {
 | |
|   home.packages =
 | |
|     with pkgs;
 | |
|     [
 | |
|       cached-nix-shell
 | |
|       deluge
 | |
|       dualsensectl
 | |
|       ffmpeg-full
 | |
|       firefox
 | |
|       freetube
 | |
|       imv
 | |
|       inkscape
 | |
|       jellyfin-media-player
 | |
|       kodi-wayland
 | |
|       libnotify
 | |
|       libreoffice-qt6-fresh
 | |
|       libva-utils
 | |
|       nixpkgs-fmt
 | |
|       nix-prefetch-git
 | |
|       pandoc
 | |
|       paraview
 | |
|       pass-wayland
 | |
|       pavucontrol
 | |
|       pay-respects
 | |
|       pirate-get
 | |
|       poppler_utils
 | |
|       pulsemixer
 | |
|       pwvucontrol
 | |
|       python3
 | |
|       remmina
 | |
|       rtorrent
 | |
|       sioyek
 | |
|       steam-run
 | |
|       stremio
 | |
|       swayimg
 | |
|       tessen
 | |
|       ungoogled-chromium
 | |
|       wdisplays
 | |
|       wine
 | |
|       wl-clipboard
 | |
|       wlr-randr
 | |
|       wofi
 | |
|       yt-dlp
 | |
|       zathura
 | |
|     ]
 | |
|     ++ [
 | |
|       chromium_discord
 | |
|     ];
 | |
| }
 |