10 lines
173 B
Nix
10 lines
173 B
Nix
|
{pkgs, ...}: {
|
||
|
home.packages = with pkgs; [
|
||
|
(lutris.override {
|
||
|
extraPkgs = pkgs: with pkgs; [gamescope];
|
||
|
})
|
||
|
gamescope
|
||
|
wineWowPackages.staging
|
||
|
];
|
||
|
}
|