Evie Litherland-Smith
d26a3c4643
Remove sddm/xserver to use greetd everywhere Currently launching Hyprland directly and starting with lockscreen Replace swaylock with gtklock for more consistency
18 lines
414 B
Nix
18 lines
414 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
{
|
|
imports = [ ./desktop.nix ./steam.nix ];
|
|
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;
|
|
};
|
|
};
|
|
}
|