universe/home/system/packages/default.nix

85 lines
1.2 KiB
Nix
Raw Normal View History

2025-03-02 11:53:58 +00:00
{
pkgs,
inputs,
...
}: {
home.packages = with pkgs; [
# flakes
2025-03-02 19:00:20 +00:00
inputs.zen-browser.packages.${system}.beta
2025-03-02 19:00:36 +00:00
# derivations
2025-03-02 11:53:58 +00:00
(callPackage ./derivations/bunnyfetch {})
2025-03-08 05:28:08 +00:00
(callPackage ./derivations/ubports-installer {})
2025-03-02 11:53:58 +00:00
#fonts
(google-fonts.override {fonts = ["Poppins" "Inter" "Roboto Mono"];})
material-symbols
nerd-fonts.caskaydia-cove
dejavu_fonts
cantarell-fonts
# code
git
go
poetry
python313
# utilites
wl-clipboard
xclip
2025-03-08 05:28:08 +00:00
waypipe
2025-03-02 19:00:36 +00:00
# cli
sops
2025-03-02 11:53:58 +00:00
android-tools
zip
unzip
2025-03-02 19:00:36 +00:00
p7zip
2025-03-02 11:53:58 +00:00
nix-output-monitor
2025-03-02 19:00:36 +00:00
eza
bat
2025-03-08 05:28:08 +00:00
quickemu
2025-03-02 19:00:36 +00:00
distrobox
2025-03-02 11:53:58 +00:00
#net
amneziawg-go
amneziawg-tools
# other
gtk3
gtk4
adwaita-qt
adwaita-qt6
qadwaitadecorations
qadwaitadecorations-qt6
libsForQt5.qt5ct
kdePackages.qt6ct
# gui
deluge-gtk
bottles
virt-viewer
libreoffice
font-manager
playerctl
pwvucontrol
viewnior
mate.engrampa
prismlauncher
inkscape
2025-03-02 19:00:36 +00:00
# de
hyprpaper
hyprpicker
hyprshot
waybar
mako
networkmanagerapplet
nautilus
# social
telegram-desktop
inputs.nixpkgs-stable.legacyPackages.${system}.vesktop
2025-03-02 11:53:58 +00:00
];
}