formating

This commit is contained in:
Ranomier 2025-03-01 20:35:14 +01:00
parent c97ee80ee0
commit b8aa94fcdc

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { {pkgs, ...}: {
programs.steam = { programs.steam = {
enable = true; enable = true;
@ -15,14 +15,14 @@
gamescopeSession.enable = true; gamescopeSession.enable = true;
# make proton-ge alway available # 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 # 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; # Note that this is already enabled with programs.steam.enable = true;
# but it might be usefull on systems without steam, # but it might be usefull on systems without steam,
# while still using steam hardware # while still using steam hardware
#hardware.steam-hardware.enable = true; #hardware.steam-hardware.enable = true;
} }