summaryrefslogtreecommitdiff
path: root/home/gaming/minecraft.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--home/gaming/minecraft.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/home/gaming/minecraft.nix b/home/gaming/minecraft.nix
deleted file mode 100644
index 0b02981..0000000
--- a/home/gaming/minecraft.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- lib,
- config,
- pkgs,
- ...
-}: let
- inherit (lib) mkIf;
- cfg = config.gaming.minecraft;
-in {
- config = mkIf cfg.enable {
- home.packages = with pkgs; [
- prismlauncher
- ];
- };
-}