enable gamescope and gamemode

This commit is contained in:
Noa Aarts 2024-05-06 21:11:56 +02:00
parent 1964b88689
commit 50a0b0585b

View file

@ -145,6 +145,7 @@ rec {
environment.systemPackages = with pkgs; [
git
zsh
mangohud
];
# TODO find list of fonts to install
@ -164,19 +165,25 @@ rec {
# enable = true;
# enableSSHSupport = true;
# };
programs.zsh.enable = true;
programs.steam.enable = true;
programs = {
zsh.enable = true;
programs.hyprland = {
steam.enable = true;
steam.gamescopeSession.enable = true;
gamemode.enable = true;
hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
portalPackage = pkgs.xdg-desktop-portal-hyprland;
};
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
nix-ld.enable = true;
nix-ld.libraries = with pkgs; [
wayland
];
};
users.defaultUserShell = pkgs.zsh;