bump with broken pkgs removed

This commit is contained in:
Tao Tien 2026-05-04 23:34:00 -07:00
parent d8b87ff705
commit 71ecc2afd9
3 changed files with 80 additions and 71 deletions

View file

@ -1,4 +1,10 @@
{pkgs, ...}: {
{
pkgs,
inputs,
...
}: let
pkgs-last-building = inputs.nixpkgs-last-building.legacyPackages.${pkgs.system};
in {
# aagl.url = "github:ezKEa/aagl-gtk-on-nix";
# aagl.inputs.nixpkgs.follows = "nixpkgs";
@ -9,24 +15,27 @@
ui.enable = true;
};
environment.systemPackages = with pkgs; [
# keep-sorted start
# parsec-bin
# yuzu # nintendo can suck the shit out of my asshole
easyeffects
gamemode
graalvmPackages.graalvm-ce
heroic
lutris
mangohud
osu-lazer-bin
prismlauncher
protonup-qt
r2modman
temurin-jre-bin-17
wine
# keep-sorted end
];
environment.systemPackages =
(with pkgs-last-building; [
# lutris
])
++ (with pkgs; [
# keep-sorted start
# parsec-bin
# yuzu # nintendo can suck the shit out of my asshole
easyeffects
gamemode
graalvmPackages.graalvm-ce
heroic
mangohud
osu-lazer-bin
prismlauncher
protonup-qt
r2modman
temurin-jre-bin-17
wine
# keep-sorted end
]);
networking.firewall.allowedTCPPorts = [25565];