1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 06:43:53 +00:00
ultima/jetpure/home/parts/pkgs.nix

53 lines
1.4 KiB
Nix
Raw Normal View History

2024-11-21 09:24:15 +00:00
{ pkgs, inputs, config, ... }: {
2024-12-03 14:20:37 +00:00
imports = with inputs; [ nur.hmModules.nur ];
2024-11-21 09:24:15 +00:00
module.programs = {
gui.pkgs = with pkgs; [
2024-12-03 14:20:37 +00:00
nemo # GUI FM
nemo-fileroller # ADDON
file-roller # ARCHIVER
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
_64gram # TG GUI
onlyoffice-bin # OFFICE
qbittorrent-enhanced # QTORRENT
filezilla # FTP CLIENT
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
popsicle # ISO WRITER
ventoy # FUCK
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
bottles # LAUNCH GAMES WITHOUT STEAM
mindustry-wayland # MINDUSTRY LETSSS GOOOOO
2024-11-21 09:24:15 +00:00
(prismlauncher.override {
gamemodeSupport = true;
controllerSupport = true;
jdks = [ temurin-jre-bin-21 temurin-jre-bin-17 temurin-jre-bin-8 ];
2024-12-03 14:20:37 +00:00
}) # MINECRAFT IS MY LIFE
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
inputs.zen.packages."${system}".specific # COOL BROWSER
2024-11-21 09:24:15 +00:00
];
cli.pkgs = with pkgs; [
2024-12-03 14:20:37 +00:00
nurl # FETCHER
nix-tree # JUST COOL
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
btop # CPU RAM AND PROCESSES TOP
nvtopPackages.amd # GPU TOP
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
trashy # TRASH
tenki # CLOCK
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
imagemagick # CONVERT IMG
jpegoptim # LOW SIZE JPEG
optipng # LOW SIZE PNG
lutgen # COLORIZE IMG
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
wyvern # GOG
tuir # REDDIT TUI
2024-11-21 09:24:15 +00:00
2024-12-03 14:20:37 +00:00
wineWow64Packages.staging # SIMPLE LAUNCHER
config.nur.repos.rycee.mozilla-addons-to-nix # ADDONS TO NIX
inputs.tgt.packages.${system}.default # TG TUI
inputs.transg.packages.${system}.default # TRANSMISSION TUI
inputs.phani.packages.${system}.qbittorrentui # QBITUI
2024-11-21 09:24:15 +00:00
];
};
}