diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2024-01-07 12:00:08 -0500 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2024-01-07 12:00:08 -0500 |
commit | 7b79203f54853733d4fae88943829d0e24e6e49f (patch) | |
tree | a352d199fad7453332b9308a6295164157729f27 /modules/games | |
parent | 184bd30bcb303104a4981ac742d8f8961c5477e7 (diff) | |
download | nix-config-7b79203f54853733d4fae88943829d0e24e6e49f.tar.gz nix-config-7b79203f54853733d4fae88943829d0e24e6e49f.tar.bz2 nix-config-7b79203f54853733d4fae88943829d0e24e6e49f.zip |
massive overhaul
Diffstat (limited to 'modules/games')
-rw-r--r-- | modules/games/default.nix | 3 | ||||
-rw-r--r-- | modules/games/games.nix | 28 |
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 - ]; - }; -} |