nixos/home/games/default.nix
Evie Litherland-Smith 8dfecd463a Uninstall retroarch
Remove Steam support from Lutris
2024-07-13 11:04:11 +01:00

11 lines
210 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
prismlauncher
cartridges
(lutris.override {
steamSupport = false;
extraPkgs = pkgs: with pkgs; [wineWowPackages.waylandFull];
})
];
}