17 lines
328 B
Nix
17 lines
328 B
Nix
|
|
# Gamescope — Valve's micro-compositor for Steam gaming sessions.
|
||
|
|
{
|
||
|
|
config,
|
||
|
|
lib,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}:
|
||
|
|
with lib; let
|
||
|
|
cfg = config.profiles.gaming.gamescope;
|
||
|
|
in {
|
||
|
|
options.profiles.gaming.gamescope.enable = mkEnableOption "enable Gamescope session";
|
||
|
|
|
||
|
|
config = mkIf cfg.enable {
|
||
|
|
home.packages = [pkgs.gamescope];
|
||
|
|
};
|
||
|
|
}
|