mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 21:23:52 +00:00
52 lines
896 B
Nix
52 lines
896 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-browser.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
|
||
|
];
|
||
|
};
|
||
|
}
|