12 lines
165 B
Nix
12 lines
165 B
Nix
|
{ pkgs, ... }: {
|
||
|
imports = [
|
||
|
./steam.nix
|
||
|
];
|
||
|
home.packages = with pkgs; [
|
||
|
gamescope
|
||
|
goverlay
|
||
|
mangohud
|
||
|
];
|
||
|
programs.gamemode.enable = true;
|
||
|
}
|