nix/home-manager/modules/packages.nix
2024-11-23 21:43:45 -07:00

52 lines
No EOL
1.1 KiB
Nix
Executable file

{ pkgs, inputs, system, ... }:
{
home.packages = (with pkgs; [
# Documents
logseq
libreoffice-qt6-fresh
# Video
jellyfin-media-player
# Chat
element-desktop
vesktop
# Tailscale
tailscale
# KDE Packages
kdePackages.kate
kdePackages.elisa
kdePackages.kdeconnect-kde
# KDE Themes
vimix-cursors
(pkgs.callPackage ../../packages/beautyline {})
# Programming
nixd # NixD LSP for .nix files
# :3
fastfetch
# Tools
ripgrep # Text searching and manipulation
jq # JSON filtering
eza # Directory lister
bat # File reading
doggo # DNS Requests
nmap # Network scanning
glow # Markdown rendering
# Process tools
btop # Process monitor
nvtopPackages.full # GPU monitor
# Basic linux tools
usbutils # `lsusb`
]) ++ [
# Firefox nightly
inputs.firefox-nightly.packages.${system}.firefox-nightly-bin
];
}