nixfiles/profiles/home-manager/gaming/lutris.nix

10 lines
173 B
Nix
Raw Normal View History

2024-07-24 15:11:46 +01:00
{pkgs, ...}: {
home.packages = with pkgs; [
(lutris.override {
extraPkgs = pkgs: with pkgs; [gamescope];
})
gamescope
wineWowPackages.staging
];
}