- Added support for open-webui and ollama-rocm in CLI packages. - Updated desktop packages to include filezilla, audacity, and freecad. - Expanded essentials with distrobox, dbus, cifs-utils, samba, and kdePackages.ksshaskpass. - Introduced niri-waybar and niri-session-manager services for improved session management. - Configured mako notifications with custom settings in the Niri environment. - Adjusted hyprpaper settings and enabled additional wallpapers. (TODO on niri. Not working ATM)
23 lines
602 B
Nix
23 lines
602 B
Nix
{config, pkgs, libs, inputs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
#CLI tools
|
|
pdftk #PDF toolkit
|
|
yt-dlp #YouTube and others video downloader
|
|
tailscale #VPN
|
|
speedtest-cli #Internet speed tester
|
|
#duplicati
|
|
ollama-rocm
|
|
open-webui
|
|
cloudflare-warp
|
|
ddrescue
|
|
texliveFull #LaTeX PDF maker
|
|
lazygit #Git CLI tool with TUI
|
|
gtypist #Typing tutor
|
|
powertop #Power consumption monitor and optimizer
|
|
file #File type identifier
|
|
hashcat #Password recovery/cracking tool
|
|
packwiz #A Minecraft modpack editor
|
|
];
|
|
}
|