42 lines
581 B
Nix
42 lines
581 B
Nix
{ pkgs, helium, codex, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# system
|
|
wget
|
|
git
|
|
htop
|
|
btop
|
|
nvtopPackages.nvidia
|
|
ntfs3g
|
|
kdePackages.qtstyleplugin-kvantum
|
|
kdePackages.kate
|
|
|
|
# soft
|
|
helium
|
|
firefox
|
|
vesktop
|
|
materialgram
|
|
termius
|
|
throne
|
|
spotify
|
|
thunderbird
|
|
openvpn
|
|
|
|
# dev
|
|
vscode
|
|
zed-editor
|
|
docker-compose
|
|
codex
|
|
jetbrains.rust-rover
|
|
|
|
# media / gpu utils
|
|
gpu-screen-recorder-gtk
|
|
libva-utils
|
|
vdpauinfo
|
|
lazydocker
|
|
];
|
|
}
|