From a33a6766772fd0c38ce2e671da0a287eb58d5019 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sat, 29 Apr 2023 18:00:26 +0100 Subject: [PATCH] Switch steam package for steam config, enable steam-hardware support to fix controller --- nixos/Vanguard.nix | 2 ++ nixos/home/collections/personal/default.nix | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/Vanguard.nix b/nixos/Vanguard.nix index 8f48458d..98753345 100644 --- a/nixos/Vanguard.nix +++ b/nixos/Vanguard.nix @@ -32,6 +32,8 @@ in # Extra hardware configuration # For Steam support + programs.steam.enable = true; + hardware.steam-hardware.enable = true; hardware.opengl.driSupport32Bit = true; hardware.openrazer = { enable = true; diff --git a/nixos/home/collections/personal/default.nix b/nixos/home/collections/personal/default.nix index aef83989..1d94f482 100644 --- a/nixos/home/collections/personal/default.nix +++ b/nixos/home/collections/personal/default.nix @@ -5,11 +5,10 @@ ../../git/personal.nix ]; home.packages = with pkgs; [ - mesa + discord + element-desktop neovide nomachine-client otpclient - steam - steam-run ]; }