steam broken?

This commit is contained in:
twoneis 2024-10-13 20:10:23 +02:00
parent c01495f972
commit 242f6349be
4 changed files with 10 additions and 8 deletions

View file

@ -2,7 +2,7 @@
conf = { conf = {
apps.enable = true; apps.enable = true;
niri.enable = true; niri.enable = true;
games.enable = false; games.enable = true;
extraLayout.enable = true; extraLayout.enable = true;
vm.enable = false; vm.enable = false;

View file

@ -1,5 +1,5 @@
{ lib, config, pkgs, ... }: let { lib, config, pkgs, ... }: let
inherit (lib) mkIf; inherit (lib) mkIf mkForce;
inherit (config) conf; inherit (config) conf;
in { in {
imports = [ imports = [
@ -15,6 +15,10 @@ in {
services.pipewire = { services.pipewire = {
enable = true; enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = mkForce false;
}; };
# Bluetooth # Bluetooth

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: let { config, ... }: let
inherit (config) conf; inherit (config) conf;
in { in {
imports = [ imports = [

View file

@ -21,7 +21,7 @@
name = "Steam Wrapped"; name = "Steam Wrapped";
}; };
in mkIf conf.games.enable { in mkIf conf.games.enable {
programs.steam.enable = true; # programs.steam.enable = true;
programs.gamescope.enable = true; programs.gamescope.enable = true;
programs.gamemode.enable = true; programs.gamemode.enable = true;
@ -33,10 +33,8 @@ in mkIf conf.games.enable {
home-manager.users.${conf.username} = { home-manager.users.${conf.username} = {
home.packages = [ home.packages = [
pkgs.prismlauncher pkgs.prismlauncher
pkgs.heroic # holo
pkgs.itch # steam-wrapped
holo
steam-wrapped
]; ];
programs.mangohud = { programs.mangohud = {