nixfiles/profiles/home-manager/gaming/lutris.nix
2024-07-24 15:11:46 +01:00

10 lines
173 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
(lutris.override {
extraPkgs = pkgs: with pkgs; [gamescope];
})
gamescope
wineWowPackages.staging
];
}