feat: add gaming stuff

This commit is contained in:
Infinidoge 2021-09-19 20:24:47 -04:00
parent 2e6aa9551c
commit 616ece2f9e
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ pkgs, ... }: {
imports = [ ./steam.nix ];
home.packages = with pkgs; [
multimc
lutris
];
}

View file

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