From 4b43f3e98bdc971b51bbda995551a687d1433442 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Tue, 6 Feb 2024 21:19:34 +0100 Subject: [PATCH] add steam.nix --- hosts/yodaGaming/configuration.nix | 2 ++ modules/steam.nix | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 modules/steam.nix diff --git a/hosts/yodaGaming/configuration.nix b/hosts/yodaGaming/configuration.nix index 8e0ccc4..94c6801 100644 --- a/hosts/yodaGaming/configuration.nix +++ b/hosts/yodaGaming/configuration.nix @@ -33,6 +33,8 @@ ../../modules/flatpak.nix ../../modules/signal-desktop.nix ../../modules/firefox.nix + + ../../modules/steam.nix #../../modules/games.nix ../../modules/jetbrains-ide.nix diff --git a/modules/steam.nix b/modules/steam.nix new file mode 100644 index 0000000..c6787c6 --- /dev/null +++ b/modules/steam.nix @@ -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; +}