1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-03 03:33:36 +00:00
Dotfiles/nix/modules/steam.nix
2021-05-30 22:10:25 +03:00

10 lines
172 B
Nix

{config, pkgs, ...}:
{
nixpkgs.config.packageOverrides = pkgs: {
steam = pkgs.steam.override {
nativeOnly = true;
};
};
programs.steam.enable = true;
}