diff --git a/users/profiles/gaming/default.nix b/users/profiles/gaming/default.nix new file mode 100644 index 0000000..69383f3 --- /dev/null +++ b/users/profiles/gaming/default.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: { + imports = [ ./steam.nix ]; + + home.packages = with pkgs; [ + multimc + lutris + ]; +} diff --git a/users/profiles/gaming/steam.nix b/users/profiles/gaming/steam.nix new file mode 100644 index 0000000..293ccae --- /dev/null +++ b/users/profiles/gaming/steam.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + (steam.override { + extraPkgs = pkgs: with pkgs; [ pango harfbuzz libthai ]; + }) + ]; + + programs.steam.enable = true; +}