2023-09-27 12:45:12 +01:00
|
|
|
{ config, lib, pkgs, user, ... }:
|
|
|
|
|
|
|
|
{
|
2023-09-16 17:58:43 +01:00
|
|
|
imports = [ ./desktop.nix ./steam.nix ];
|
2023-09-27 12:45:12 +01:00
|
|
|
services.greetd.settings = rec {
|
|
|
|
default_session.command = ''
|
|
|
|
gamescope\
|
|
|
|
--nested-refresh 60\
|
|
|
|
--scaler auto --filter fsr --fsr-sharpness 10\
|
|
|
|
--hide-cursor-delay 5 --steam -- steam -gamepadui
|
|
|
|
'';
|
|
|
|
initial_session = {
|
|
|
|
inherit user;
|
|
|
|
inherit (default_session) command;
|
2023-08-05 18:06:21 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|