2024-09-09 00:22:14 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
inputs,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-09-13 01:50:53 +00:00
|
|
|
with lib; let
|
2024-09-09 00:22:14 +00:00
|
|
|
cfg = config.custom.settings.packages;
|
2024-09-13 01:50:53 +00:00
|
|
|
in {
|
2024-09-09 00:22:14 +00:00
|
|
|
options.custom.settings.packages = {
|
2024-09-13 01:50:53 +00:00
|
|
|
enable = mkOption {default = false;};
|
|
|
|
extra = mkOption {default = [];};
|
2024-09-09 00:22:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable (
|
2024-09-13 01:50:53 +00:00
|
|
|
with pkgs; {
|
2024-09-09 00:22:14 +00:00
|
|
|
environment.systemPackages =
|
|
|
|
cfg.extra
|
2024-09-18 13:40:42 +00:00
|
|
|
++ optionals config.custom.default [
|
2024-10-27 21:17:06 +00:00
|
|
|
### CLI applications
|
2024-09-09 00:22:14 +00:00
|
|
|
config.boot.kernelPackages.cpupower # Install for current kernel
|
|
|
|
|
2024-10-27 21:17:06 +00:00
|
|
|
alejandra # Nix formatter
|
|
|
|
fd # File finder
|
|
|
|
fzf # Fuzzy search
|
|
|
|
jq # JSON parser
|
|
|
|
killport # Kill processes on port
|
|
|
|
libqalculate # Calculator
|
|
|
|
lm_sensors # System sensors
|
|
|
|
nix-output-monitor # Nix build parser
|
|
|
|
nix-tree # Nix store explorer
|
|
|
|
nmap # Network scanner
|
|
|
|
nvd # Nix diff viewer
|
|
|
|
progress # Coreutils progress viewer
|
|
|
|
rclone # File sync
|
|
|
|
stress # CPU stress tester
|
|
|
|
trashy # CLI trash
|
|
|
|
waypipe # Wayland proxy
|
|
|
|
wl-clipboard # Wayland clipboard
|
|
|
|
xclip # X11 clipboard
|
2024-09-09 00:22:14 +00:00
|
|
|
|
2024-10-27 21:17:06 +00:00
|
|
|
### Dependencies
|
2024-09-09 00:22:14 +00:00
|
|
|
man-pages
|
|
|
|
man-pages-posix
|
|
|
|
]
|
|
|
|
++ optionals config.custom.minimal [
|
2024-10-27 21:17:06 +00:00
|
|
|
### GUI applications
|
2024-09-09 00:22:14 +00:00
|
|
|
kdiskmark # Must be system package for polkit
|
|
|
|
|
2024-10-27 21:17:06 +00:00
|
|
|
### CLI applications
|
2024-09-09 00:22:14 +00:00
|
|
|
# https://github.com/sonic2kk/steamtinkerlaunch
|
|
|
|
# TODO: Remove when v14 released on nixpkgs
|
|
|
|
# https://github.com/sonic2kk/steamtinkerlaunch/issues/992
|
|
|
|
# Build from latest commit
|
2024-09-13 01:50:53 +00:00
|
|
|
(steamtinkerlaunch.overrideAttrs {src = inputs.steamtinkerlaunch;})
|
2024-09-09 00:22:14 +00:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
p7zip # steamtinkerlaunch (Special K)
|
|
|
|
]
|
|
|
|
++ optionals config.custom.full [
|
2024-10-27 21:17:06 +00:00
|
|
|
### GUI applications
|
|
|
|
amberol # Audio player
|
|
|
|
apostrophe # Markdown editor
|
|
|
|
baobab # Disk usage analyzer
|
|
|
|
blackbox-terminal # Terminal
|
|
|
|
cartridges # Game library
|
|
|
|
cinny-desktop # Matrix client
|
|
|
|
d-spy # D-Bus introspection
|
|
|
|
dconf-editor # GSettings editor
|
|
|
|
decibels # Audio player
|
|
|
|
decoder # QR code scanner
|
|
|
|
discord # Discord client
|
|
|
|
drawio # Diagram maker
|
|
|
|
easyeffects # Audio filters
|
|
|
|
element-desktop # Matrix client
|
|
|
|
flare-signal # Signal client
|
|
|
|
fluffychat # Matrix client
|
|
|
|
footage # Video editor
|
|
|
|
#// fractal # Matrix client
|
|
|
|
fragments # Torrent downloader
|
|
|
|
gcolor3 # Color picker
|
|
|
|
gitg # Git client
|
|
|
|
github-desktop # Git client
|
|
|
|
gnome-boxes # Virtual machine manager
|
|
|
|
gnome-calculator # Calculator
|
|
|
|
gnome-calendar # Calendar
|
|
|
|
gnome-connections # Remote desktop client
|
|
|
|
gnome-disk-utility # Disk formatter
|
|
|
|
gnome-font-viewer # Font viewer
|
|
|
|
gnome-graphs # Data plotter
|
|
|
|
gnome-maps # OpenStreetMap client
|
|
|
|
gnome-obfuscate # Image redacter
|
|
|
|
gnome-podcasts # Podcast feed
|
|
|
|
gnome-resources # System monitor
|
|
|
|
gnome-software # Flatpak manager
|
|
|
|
gnome-system-monitor # System monitor
|
|
|
|
gnome-text-editor # Text editor
|
|
|
|
gnome-tweaks # GNOME extras
|
|
|
|
gnome-usage # System monitor
|
|
|
|
gradience # GTK theme editor
|
|
|
|
gtkcord4 # Discord client
|
|
|
|
gtkterm # Serial terminal
|
|
|
|
helvum # Pipewire patchbay
|
|
|
|
heroic # Game library
|
|
|
|
icon-library # Icon viewer
|
|
|
|
identity # Compare media
|
|
|
|
impression # Image writer
|
|
|
|
kooha # Screen recorder
|
|
|
|
logseq # Knowledge base
|
|
|
|
loupe # Image viewer
|
|
|
|
lutris # Game library
|
|
|
|
newsflash # RSS feed
|
|
|
|
nheko # Matrix client
|
|
|
|
obsidian # Knowledge base
|
|
|
|
onlyoffice-bin # Document editor
|
|
|
|
papers # Document viewer
|
|
|
|
path-of-building # Path of Exile planner
|
|
|
|
pika-backup # Borg backup manager
|
|
|
|
planify # Tasks
|
|
|
|
pods # Podman manager
|
|
|
|
protonup-qt # Proton updater
|
|
|
|
protonvpn-gui # Proton VPN client
|
|
|
|
pwvucontrol # Pipewire volume controller
|
|
|
|
remmina # Remote desktop client
|
|
|
|
signal-desktop # Signal client
|
|
|
|
smile # Emoji picker
|
|
|
|
snapshot # Camera
|
|
|
|
snoop # File content finder
|
|
|
|
spotify # Spotify client
|
|
|
|
syncthingtray # Syncthing client
|
|
|
|
tagger # Audio file tagger
|
|
|
|
telegram-desktop # Telegram client
|
|
|
|
turtle # Git client
|
|
|
|
variety # Wallpaper changer
|
|
|
|
ventoy # Image writer
|
|
|
|
virt-viewer # Virtual machine viewer
|
|
|
|
wildcard # Regex tester
|
|
|
|
wowup-cf # World of Warcraft addon manager
|
|
|
|
#// xivlauncher # Final Fantasy XIV launcher
|
|
|
|
youtube-music # YouTube Music client
|
|
|
|
zrythm # Digital audio workstation
|
2024-09-09 00:22:14 +00:00
|
|
|
|
|
|
|
#!! Must be downloaded manually due to licensing
|
2024-10-18 00:48:15 +00:00
|
|
|
# (ciscoPacketTracer8.overrideAttrs {
|
|
|
|
# src = /home/myned/SYNC/linux/config/cisco/CiscoPacketTracer822_amd64_signed.deb;
|
|
|
|
# })
|
2024-09-09 00:22:14 +00:00
|
|
|
|
2024-10-27 21:17:06 +00:00
|
|
|
### CLI applications
|
2024-09-09 00:22:14 +00:00
|
|
|
inputs.agenix.packages.${system}.default
|
|
|
|
|
2024-10-27 21:17:06 +00:00
|
|
|
betterdiscordctl # BetterDiscord installer
|
|
|
|
bitwarden-cli # Bitwarden client
|
|
|
|
brightnessctl # Backlight changer
|
|
|
|
devbox # Development environment
|
2024-09-09 00:22:14 +00:00
|
|
|
er-patcher # Elden Ring fixes
|
2024-10-27 21:17:06 +00:00
|
|
|
firefoxpwa # Firefox web apps
|
|
|
|
glxinfo # Graphics tester
|
|
|
|
hwloc # CPU topology viewer
|
|
|
|
freerdp3 # RDP client
|
|
|
|
grimblast # Screenshots
|
|
|
|
imagemagick # Image editor
|
|
|
|
libinput # Libinput commands
|
|
|
|
libnotify # Notification tester
|
|
|
|
linux-wifi-hotspot # Wi-Fi hotspot
|
|
|
|
nixos-anywhere # NixOS installer
|
|
|
|
nvtopPackages.full # GPU monitor
|
|
|
|
playerctl # Media controller
|
|
|
|
satty # Screenshot editor
|
|
|
|
tio # Serial terminal
|
|
|
|
usbutils # USB bus utilities
|
|
|
|
vrrtest # VRR tester
|
|
|
|
winetricks # Wine modifier
|
|
|
|
xdg-utils # XDG utilities
|
2024-09-09 00:22:14 +00:00
|
|
|
ydotool # TODO: Remove when using service
|
|
|
|
|
2024-10-27 21:17:06 +00:00
|
|
|
### Dependencies
|
2024-09-09 00:22:14 +00:00
|
|
|
wineWowPackages.unstableFull # WoW64, not World of Warcraft
|
|
|
|
|
|
|
|
# TODO: Use home.gtk.theme.package when fixed upstream
|
|
|
|
# https://github.com/nix-community/home-manager/issues/5133
|
|
|
|
adw-gtk3
|
|
|
|
|
2024-10-27 21:17:06 +00:00
|
|
|
### Python packages
|
2024-09-09 00:22:14 +00:00
|
|
|
# https://wiki.nixos.org/wiki/Python#Package_unavailable_in_Nixpkgs
|
|
|
|
# https://wiki.nixos.org/wiki/Packaging/Python
|
|
|
|
(python311.withPackages (
|
2024-09-13 01:50:53 +00:00
|
|
|
ps:
|
|
|
|
with ps; [
|
|
|
|
# lifx-cli
|
|
|
|
# https://github.com/Rawa/lifx-cli
|
|
|
|
(buildPythonPackage {
|
|
|
|
pname = "lifx-cli";
|
|
|
|
version = "master";
|
|
|
|
src = inputs.lifx-cli;
|
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = with python311Packages; [requests];
|
|
|
|
})
|
|
|
|
]
|
2024-09-09 00:22:14 +00:00
|
|
|
))
|
|
|
|
];
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|