bwehbwehbwehbweh

This commit is contained in:
Schrottkatze 2026-03-28 17:28:04 +01:00
commit 2108e5edb4
No known key found for this signature in database
7 changed files with 19 additions and 5 deletions

View file

@ -1,6 +1,7 @@
{
config,
lib,
pkgs,
...
}:
let
@ -13,13 +14,22 @@ with lib;
};
config = mkIf cfg.enable {
programs.steam.enable = true;
programs.gamemode.enable = true;
programs.gamescope = {
enable = true;
package = pkgs.gamescope.overrideAttrs (_: {
NIX_CFLAGS_COMPILE = [ "-fno-fast-math" ];
});
};
home-manager.users.jade =
{ pkgs, ... }:
{
home.packages = with pkgs; [
gamemode
prismlauncher
dxvk_2
vkd3d-proton
mangohud
];
};
};