Files
lavitz/modules/packages.nix
2025-06-23 14:04:11 -06:00

41 lines
654 B
Nix

{ config, pkgs, ... }:
{
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# System packages
environment.systemPackages = with pkgs; [
# Browsers and communication
ungoogled-chromium
librewolf
discord
signal-desktop-bin
impression
# Development tools
zed-editor
git
go
cargo
rustc
nodejs_24
python3Full
openssh
nodePackages."pnpm"
# Desktop applications
bitwarden-desktop
ghostty
spotify
vlc
onlyoffice-desktopeditors
nextcloud-client
zotero
prismlauncher
# GNOME extensions
gnomeExtensions.appindicator
];
}