mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 10:43:53 +00:00
53 lines
932 B
Nix
53 lines
932 B
Nix
{ pkgs, inputs, config, ... }: {
|
|
imports = [ inputs.nur.hmModules.nur ];
|
|
module.programs = {
|
|
gui.pkgs = with pkgs; [
|
|
nemo
|
|
nemo-fileroller
|
|
file-roller
|
|
|
|
_64gram
|
|
onlyoffice-bin
|
|
qbittorrent-enhanced
|
|
|
|
popsicle
|
|
ventoy
|
|
|
|
bottles
|
|
mindustry-wayland
|
|
(prismlauncher.override {
|
|
gamemodeSupport = true;
|
|
controllerSupport = true;
|
|
jdks = [ temurin-jre-bin-21 temurin-jre-bin-17 temurin-jre-bin-8 ];
|
|
})
|
|
|
|
inputs.zen.packages."${system}".specific
|
|
];
|
|
cli.pkgs = with pkgs; [
|
|
nurl
|
|
nix-tree
|
|
|
|
simple-mtpfs
|
|
|
|
btop
|
|
nvtopPackages.amd
|
|
|
|
trashy
|
|
tenki
|
|
|
|
imagemagick
|
|
jpegoptim
|
|
optipng
|
|
lutgen
|
|
|
|
wyvern
|
|
legendary-gl
|
|
eidolon
|
|
|
|
wineWow64Packages.staging
|
|
config.nur.repos.rycee.mozilla-addons-to-nix
|
|
inputs.tgt.packages.${system}.default
|
|
];
|
|
};
|
|
}
|