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.nix28
2 files changed, 0 insertions, 31 deletions
diff --git a/modules/games/default.nix b/modules/games/default.nix
deleted file mode 100644
index ff93482..0000000
--- a/modules/games/default.nix
+++ /dev/null
@@ -1,3 +0,0 @@
-[
- ./games.nix
-]
diff --git a/modules/games/games.nix b/modules/games/games.nix
deleted file mode 100644
index b345aac..0000000
--- a/modules/games/games.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ 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
- steam-run
- wineWowPackages.staging
- winetricks
- protontricks
- dotnet-sdk_7
- ];
-
- home-manager.users.${user}.home.packages = with pkgs; [
- minetest
- prismlauncher
- ];
- };
-}