add steam.nix

This commit is contained in:
Daniel Langbein 2024-02-06 21:19:34 +01:00
parent 87e0072d4c
commit 4b43f3e98b
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 13 additions and 0 deletions

View File

@ -33,6 +33,8 @@
../../modules/flatpak.nix ../../modules/flatpak.nix
../../modules/signal-desktop.nix ../../modules/signal-desktop.nix
../../modules/firefox.nix ../../modules/firefox.nix
../../modules/steam.nix
#../../modules/games.nix #../../modules/games.nix
../../modules/jetbrains-ide.nix ../../modules/jetbrains-ide.nix

11
modules/steam.nix Normal file
View File

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
# flatpak install com.valvesoftware.Steam
# Launching Steam with Flatpak might warn you about installing the steam-devices package to add support for some gamepads.
# https://wiki.archlinux.org/title/steam#Flatpak
# https://github.com/ValveSoftware/steam-devices
# These udev rules should be enabled by the following setting.
# https://www.reddit.com/r/NixOS/comments/10px9ty/comment/j6moarv/
#hardware.steam-hardware.enable = true;
}