From 177ee9253e4efb22c55aa5d69f79c3600bd4871f Mon Sep 17 00:00:00 2001 From: Laurent Gueret Date: Mon, 10 Aug 2026 14:06:31 +0200 Subject: [PATCH] =?UTF-8?q?Correction=20des=20dossier=20li=C3=A9=20=C3=A0?= =?UTF-8?q?=20Steam?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/nixos/system/os.nix | 1 + modules/system/nixos/{ => apps}/games/proton.nix | 4 ++-- modules/system/nixos/{ => apps}/games/steam.nix | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) rename modules/system/nixos/{ => apps}/games/proton.nix (74%) rename modules/system/nixos/{ => apps}/games/steam.nix (84%) diff --git a/hosts/nixos/system/os.nix b/hosts/nixos/system/os.nix index 0c6bd41..575a20e 100755 --- a/hosts/nixos/system/os.nix +++ b/hosts/nixos/system/os.nix @@ -30,6 +30,7 @@ os.virtualisation.podman.gtk = true; # Terminal + os.apps.games.steam = true; programs.ssh.enableAskPassword = false; # No-window git push fix # System version diff --git a/modules/system/nixos/games/proton.nix b/modules/system/nixos/apps/games/proton.nix similarity index 74% rename from modules/system/nixos/games/proton.nix rename to modules/system/nixos/apps/games/proton.nix index c3546c5..bc47a9c 100644 --- a/modules/system/nixos/games/proton.nix +++ b/modules/system/nixos/apps/games/proton.nix @@ -6,10 +6,10 @@ }: with lib; let - cfg = config.os.protonge; + cfg = config.os.apps.games.protonge; in { - options.os.protonge = { + options.os.apps.games.protonge = { enable = mkEnableOption "System pipewire service"; }; config = mkIf cfg.enable { diff --git a/modules/system/nixos/games/steam.nix b/modules/system/nixos/apps/games/steam.nix similarity index 84% rename from modules/system/nixos/games/steam.nix rename to modules/system/nixos/apps/games/steam.nix index f7f9cbb..3cc31b7 100644 --- a/modules/system/nixos/games/steam.nix +++ b/modules/system/nixos/apps/games/steam.nix @@ -6,10 +6,10 @@ }: with lib; let - cfg = config.os.steam; + cfg = config.os.apps.games.steam; in { - options.os.steam = { + options.os.apps.games.steam = { enable = mkEnableOption "System pipewire service"; }; config = mkIf cfg.enable {