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; + }; }