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