Evie Litherland-Smith
0889818512
Move commonModule into system/default.nix Keep most essential parts (user definition, home-manager init) in flake.nix but move rest to system/default.nix Remove some tui expressions from home and add all to home/default.nix, will always want those so always use Disable gamescope session unless gamescope.nix imported Move various home.package definitions to environment.systemPackage in system/ expressions, located based on appropriate use Move wallpapers directory due to restructure, no other changes to it
19 lines
463 B
Nix
19 lines
463 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
{
|
|
imports = [ ./desktop.nix ./steam.nix ];
|
|
programs.steam.gamescopeSession.enable = true;
|
|
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;
|
|
};
|
|
};
|
|
}
|