universe/users/profiles/gaming/steam.nix

9 lines
180 B
Nix

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