From c07afd14d67f0cc5a9d7f7a62f93708c437b89c1 Mon Sep 17 00:00:00 2001 From: Zeusina Date: Tue, 21 Jul 2026 23:20:35 +0300 Subject: [PATCH] feat(kachu-laptop): :sparkles: install steam --- hosts/kachu-laptop/configuration.nix | 11 +++++++++++ hosts/kachu-laptop/hardware-configuration.nix | 5 +++++ 2 files changed, 16 insertions(+) diff --git a/hosts/kachu-laptop/configuration.nix b/hosts/kachu-laptop/configuration.nix index 791a923..093e90c 100644 --- a/hosts/kachu-laptop/configuration.nix +++ b/hosts/kachu-laptop/configuration.nix @@ -138,6 +138,17 @@ programs.firefox.enable = true; + programs.steam = { + enable = true; + + package = pkgs.steam.override { + extraPkgs = pkgs: + with pkgs; [ + kdePackages.breeze + ]; + }; + }; + # List packages installed in system profile. # You can use https://search.nixos.org/ to find more packages (and options). nixpkgs.config.allowUnfree = true; diff --git a/hosts/kachu-laptop/hardware-configuration.nix b/hosts/kachu-laptop/hardware-configuration.nix index 794b927..d48c87d 100644 --- a/hosts/kachu-laptop/hardware-configuration.nix +++ b/hosts/kachu-laptop/hardware-configuration.nix @@ -93,4 +93,9 @@ nvidiaBusId = "PCI:0:1:0"; }; }; + + hardware.graphics = { + enable = true; + enable32Bit = true; + }; }