Files
nixos/home/user/packages.nix

39 lines
632 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{ pkgs, pkgs-unstable, ... }:
{
2026-02-22 20:35:37 +00:00
home.packages = with pkgs; [
jetbrains.rider
go
lua
nodePackages.pnpm
(python3.withPackages (python-pkgs: [
2026-02-22 19:54:17 +00:00
python-pkgs.pip
python-pkgs.requests
]))
2026-02-22 20:35:37 +00:00
rustup
zig
obsidian
thunderbird
libreoffice-qt
hunspell
blueberry
telegram-desktop
steam
steam-run
yuzu-mainline
(lutris.override {
2026-02-22 19:54:17 +00:00
extraPkgs = pkgs: [
2026-02-22 20:35:37 +00:00
wineWowPackages.stable
winetricks
2026-02-22 19:54:17 +00:00
];
})
2026-02-22 20:35:37 +00:00
viewnior
2026-02-22 19:54:17 +00:00
pkgs-unstable.hyprshot
2026-02-22 20:35:37 +00:00
catppuccin-cursors.macchiatoBlue
catppuccin-gtk
papirus-folders
git
curl
2026-02-22 19:54:17 +00:00
];
}