From 07dc1e93f9c12f3ffd04a8f01692c5392885596c Mon Sep 17 00:00:00 2001 From: Soispha Date: Fri, 25 Aug 2023 12:37:47 +0200 Subject: Fix(system/services/steam): Install wine with steam --- hosts/apzu/default.nix | 3 +++ system/services/steam/default.nix | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/hosts/apzu/default.nix b/hosts/apzu/default.nix index fb261aa8..293b09a2 100644 --- a/hosts/apzu/default.nix +++ b/hosts/apzu/default.nix @@ -7,6 +7,9 @@ ]; soispha = { + services.steam = { + enable = true; + }; laptop = { enable = true; backlight = "intel_backlight"; diff --git a/system/services/steam/default.nix b/system/services/steam/default.nix index d5eede9e..54091493 100644 --- a/system/services/steam/default.nix +++ b/system/services/steam/default.nix @@ -1,6 +1,7 @@ { lib, config, + pkgs, ... }: let cfg = config.soispha.services.steam; @@ -8,12 +9,15 @@ in { options.soispha.services.steam = { enable = lib.mkOption { default = false; - description = lib.mdDoc "Enable Steam"; + description = lib.mdDoc "Steam"; }; }; config = lib.mkIf cfg.enable { programs.steam = { enable = true; }; + environment.systemPackages = [ + pkgs.wineWowPackages.waylandFull + ]; }; } -- cgit 1.4.1