nixos-config/configurations/steam.nix

20 lines
520 B
Nix

{ pkgs, ... }: {
hardware = {
opengl = {
driSupport32Bit = true;
extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
};
pulseaudio.support32Bit = true;
};
custom.zfs.homeLinks = [
{ path = ".paradoxlauncher"; type = "data"; }
{ path = ".steam"; type = "data"; }
{ path = ".local/share/Steam"; type = "data"; }
{ path = ".local/share/Paradox Interactive"; type = "data"; }
];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.steam ];
};
}