summaryrefslogtreecommitdiffstats
path: root/modules/games
diff options
context:
space:
mode:
Diffstat (limited to 'modules/games')
-rw-r--r--modules/games/default.nix3
-rw-r--r--modules/games/games.nix23
2 files changed, 26 insertions, 0 deletions
diff --git a/modules/games/default.nix b/modules/games/default.nix
new file mode 100644
index 0000000..ff93482
--- /dev/null
+++ b/modules/games/default.nix
@@ -0,0 +1,3 @@
+[
+ ./games.nix
+]
diff --git a/modules/games/games.nix b/modules/games/games.nix
new file mode 100644
index 0000000..509b105
--- /dev/null
+++ b/modules/games/games.nix
@@ -0,0 +1,23 @@
+{ config, lib, pkgs, user, ... }:
+with lib;
+{
+ options = {
+ games = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ };
+ };
+ };
+
+ config = mkIf (config.games.enable) {
+ environment.systemPackages = with pkgs; [
+ steam-run
+ ];
+
+ home-manager.users.${user}.home.packages = with pkgs; [
+ minetest
+ vintagestory
+ ];
+ };
+}