Restructured to use a profiles directory for cleaner structure.

This commit is contained in:
kat witch 2020-11-05 16:46:46 +00:00 committed by kat
parent 2711729d50
commit 0668a962e8
12 changed files with 16 additions and 16 deletions

View file

@ -0,0 +1,14 @@
{ 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
];
};
}