Add steam on jupiter

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-09-07 14:12:17 +01:00
parent 1d3a3cc805
commit 24d31f6881
8 changed files with 91 additions and 32 deletions

View File

@@ -3,6 +3,7 @@
{
programs.gamescope = {
enable = true;
capSysNice = true;
args = [
"--rt"
"-f"

View File

@@ -1,30 +0,0 @@
{ user, home }:
{
config,
lib,
pkgs,
...
}:
# https://bonkmaykr.xyz/content/discovery_lin.htm
{
boot.kernel.sysctl."vm.max_map_count" = 1048576;
security.pam.loginLimits = [
{
domain = user;
item = "nofile";
type = "soft";
value = 200000;
}
{
domain = user;
item = "nofile";
type = "hard";
value = 200000;
}
];
home-manager.users.${user}.wayland.windowManager.hyprland.settings.env = [
"__GL_SHADER_DISK_CACHE_SKIP_CLEANUP,1"
];
}