diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-02 17:36:18 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-10-02 17:36:18 +0300 |
commit | 4a99257e9061c9eca83419d9585d4b9455df5c30 (patch) | |
tree | e2d71d3ed871fb1a5909b564bea424e9d88e0ce3 /nixos/configuration.nix | |
parent | 83c26c1e31fe4ae5ea6c6e0e769e3294191d3167 (diff) | |
download | nixos-configuration-4a99257e9061c9eca83419d9585d4b9455df5c30.tar.gz nixos-configuration-4a99257e9061c9eca83419d9585d4b9455df5c30.tar.bz2 nixos-configuration-4a99257e9061c9eca83419d9585d4b9455df5c30.zip |
feat: nvidia logind seatd gamescope config update
Nvidia: added Dynamic Boost and fixed PRIME BusIDs
Gamescope: added capSysNice definition
Fcitx5: change names to resolve eval warning
Logind: Delayed processing of power key press (600ms)
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r-- | nixos/configuration.nix | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 7de01f9..1639b76 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -22,9 +22,14 @@ FLAKE = config.myConfigLocation; GTK_IM_MODULE = lib.mkForce ""; }; + programs.gamescope = { + enable = true; + capSysNice = true; + }; security.pam.services.hyprlock = {}; i18n.inputMethod = { - enabled = "fcitx5"; + type = "fcitx5"; + enable = true; fcitx5.addons = with pkgs; [ fcitx5-mozc fcitx5-gtk @@ -65,9 +70,7 @@ true; # Open ports in the firewall for Source Dedicated Server localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers - gamescopeSession = { - enable = true; - }; + extraCompatPackages = with pkgs; [proton-ge-bin]; }; programs.gamemode.enable = true; boot = { |