summaryrefslogtreecommitdiff
path: root/modules/gaming/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gaming/default.nix')
-rw-r--r--modules/gaming/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/gaming/default.nix b/modules/gaming/default.nix
deleted file mode 100644
index a0c826c..0000000
--- a/modules/gaming/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- lib,
- config,
- ...
-}: let
- inherit (lib) mkEnableOption;
-in {
- imports = [
- ./homestuck.nix
- ./minecraft.nix
- ./steam.nix
- ];
-
- options.gaming = {
- homestuck = mkEnableOption "Install the unofficial homestuck collection.";
- minecraft = mkEnableOption "Install the minecraft block game.";
- steam = mkEnableOption "Install the steam game launcher.";
- };
-}