universe/users/profiles/gaming/steam.nix

7 lines
147 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
(steam.override {
extraPkgs = pkgs: with pkgs; [ pango harfbuzz libthai ];
})
];
}