remove: steam hm

This commit is contained in:
ooks-io 2024-01-15 15:58:40 +13:00
parent 292c9a07a4
commit 8f58a79fe2
2 changed files with 0 additions and 51 deletions

View file

@ -1,14 +1 @@
{ lib, ... }:
{
imports = [
./steam
];
options.programs.desktop.games = {
steam = {
enable = lib.mkEnableOption "Enable steam";
};
};
};
}

View file

@ -1,38 +0,0 @@
{ pkgs, config, inputs, lib, ... }:
let
cfg = config.programs.desktop.games.steam;
in
{
config = lib.mkIf cfg.enable {
hardware.opengl.extraPackages = [ pkgs.gamescope ];
hardware.opengl.driSupport32Bit = true;
programs = {
steam = {
enable = true;
};
gamescope = {
enable = true;
capSysNice = true;
};
gamemode = {
enable = true;
enableRenice = true;
};
home-manager.users.ooks = { config, lib, pkgs, ... }: {
home.packages = with pkgs; [
protonup-ng
];
programs = {
mangohud = {
enable = true;
};
};
};
};
};
}