nixconf/modules/packages.nix
Gabriella Bere 75f7f38f29 moved obs-studio to home-manager module
also installed obs-pipewire-audio-capture using the home-manager module
2025-06-02 17:21:36 +01:00

44 lines
727 B
Nix

{
config,
lib,
pkgs,
...
}: {
# All system packages required from nixos-unstable by default
environment.systemPackages = with pkgs; [
neovim # nano is installed by default
wget
vesktop
thunderbird
kdePackages.bluedevil
fastfetch
ungoogled-chromium
qbittorrent
p7zip
unrar
wineWowPackages.stable
wine
(wine.override {wineBuild = "wine64";})
wine64
wineWowPackages.staging
winetricks
wineWowPackages.waylandFull
vlc
protonmail-bridge
pciutils
vial
qmk
dmidecode
wl-clipboard
lutris
tree
tenacity
home-manager
davinci-resolve
v4l-utils
libreoffice
nixfmt-rfc-style
nixd
qemu
];
}