about summary refs log tree commit diff
path: root/pkgs/games/base-module.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-09-10 07:35:28 +0200
committeraszlig <aszlig@redmoonstudios.org>2017-09-10 07:35:28 +0200
commit5402b030e2cc78e510414b4604d9528afbec43d2 (patch)
treec2734bc0b119a5782372317755b0eaef1d211648 /pkgs/games/base-module.nix
parent02dcea750b493cbf3b5ee918f338018725c29e17 (diff)
pkgs/games: Inline base-module.nix
This is such a short expression that really shouldn't belong in its own
file, so that everything we want to know is there in default.nix.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/games/base-module.nix')
-rw-r--r--pkgs/games/base-module.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/pkgs/games/base-module.nix b/pkgs/games/base-module.nix
deleted file mode 100644
index 934893c1..00000000
--- a/pkgs/games/base-module.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ lib, ... }:
-
-with lib;
-
-{
-  options = {
-    packages = mkOption {
-      type = types.attrsOf types.unspecified;
-      default = {};
-      description = "Available NixGames packages.";
-    };
-  };
-}