From ac67541591f159f26b17318f5a64a1e9b9bef94e Mon Sep 17 00:00:00 2001 From: Zeusina Date: Fri, 17 Jul 2026 14:09:25 +0300 Subject: [PATCH] feat(kachu-pc): :sparkles: install steam & heroic launcher --- hosts/kachu-pc/configuration.nix | 5 +++++ hosts/kachu-pc/hardware-configuration.nix | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/hosts/kachu-pc/configuration.nix b/hosts/kachu-pc/configuration.nix index e04b130..5ed30a6 100644 --- a/hosts/kachu-pc/configuration.nix +++ b/hosts/kachu-pc/configuration.nix @@ -130,10 +130,15 @@ ]; }) (callPackage ../../drvs/orca-slicer.nix {}) + heroic ]; shell = pkgs.zsh; }; + programs.steam = { + enable = true; + }; + security.sudo.wheelNeedsPassword = false; nix = { diff --git a/hosts/kachu-pc/hardware-configuration.nix b/hosts/kachu-pc/hardware-configuration.nix index 63ab388..c09d74b 100644 --- a/hosts/kachu-pc/hardware-configuration.nix +++ b/hosts/kachu-pc/hardware-configuration.nix @@ -61,4 +61,9 @@ package = config.boot.kernelPackages.nvidiaPackages.stable; powerManagement.enable = true; }; + + hardware.graphics = { + enable = true; + enable32Bit = true; + }; }