From a82a19101e9e2ddce2b612d6ef11ac495d2ea0ed Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Sat, 1 Mar 2025 20:35:14 +0100 Subject: [PATCH] formating --- modules/software/game.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/software/game.nix b/modules/software/game.nix index 00944e9..87313f6 100644 --- a/modules/software/game.nix +++ b/modules/software/game.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: { +{pkgs, ...}: { programs.steam = { enable = true; @@ -15,14 +15,14 @@ gamescopeSession.enable = true; # make proton-ge alway available - extraCompatPackages = with pkgs; [ proton-ge-bin ]; + extraCompatPackages = with pkgs; [proton-ge-bin]; }; # steam-run: Run commands in the same FHS environment that is used for Steam - environment.systemPackages = with pkgs; [ steam-run ]; + environment.systemPackages = with pkgs; [steam-run]; # Note that this is already enabled with programs.steam.enable = true; # but it might be usefull on systems without steam, # while still using steam hardware #hardware.steam-hardware.enable = true; - } +}