grimm-nixos-laptop/modules/system-packages.nix

30 lines
480 B
Nix
Raw Normal View History

2023-11-29 22:56:30 +01:00
{pkgs, ...}:
2023-11-28 23:24:43 +01:00
{
environment.systemPackages = with pkgs; [
wget
xonsh
tree
git
file
kate
git-lfs
util-linux
btop
kitty
polkit-kde-agent
skanpage
cached-nix-shell
ffmpeg-full
imagemagick
2023-11-29 22:56:30 +01:00
(writeShellScriptBin "primerun" ''
export __NV_PRIME_RENDER_OFFLOAD=1
export __NV_PRIME_RENDER_OFFLOAD_PROVIDER=NVIDIA-G0
export __GLX_VENDOR_LIBRARY_NAME=nvidia
export __VK_LAYER_NV_optimus=NVIDIA_only
exec "$@"
'')
2023-11-28 23:24:43 +01:00
];
}