mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
14 lines
No EOL
297 B
Nix
14 lines
No EOL
297 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
|
{
|
|
hardware.opengl.driSupport32Bit = true;
|
|
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
|
|
hardware.pulseaudio.support32Bit = true;
|
|
|
|
home-manager.users.kat = {
|
|
home.packages = [
|
|
pkgs.steam
|
|
pkgs.steam-run
|
|
];
|
|
};
|
|
} |