summaryrefslogtreecommitdiff
path: root/home/gaming
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-09-29 12:34:03 -0400
committerFreya Murphy <freya@freyacat.org>2025-09-29 12:34:03 -0400
commitc4d17444e570ee8cd3b2b4a0fd45809d2469fb53 (patch)
tree11f92c159bb07945608e3e50a9898151b6759592 /home/gaming
parentupdate commits (diff)
downloaddotfiles-nix-c4d17444e570ee8cd3b2b4a0fd45809d2469fb53.tar.gz
dotfiles-nix-c4d17444e570ee8cd3b2b4a0fd45809d2469fb53.tar.bz2
dotfiles-nix-c4d17444e570ee8cd3b2b4a0fd45809d2469fb53.zip
update commits
Diffstat (limited to 'home/gaming')
-rw-r--r--home/gaming/default.nix6
-rw-r--r--home/gaming/homestuck.nix16
-rw-r--r--home/gaming/minecraft.nix15
3 files changed, 0 insertions, 37 deletions
diff --git a/home/gaming/default.nix b/home/gaming/default.nix
deleted file mode 100644
index 6e06904..0000000
--- a/home/gaming/default.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-{...}: {
- imports = [
- ./homestuck.nix
- ./minecraft.nix
- ];
-}
diff --git a/home/gaming/homestuck.nix b/home/gaming/homestuck.nix
deleted file mode 100644
index f7a1d65..0000000
--- a/home/gaming/homestuck.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- lib,
- config,
- inputs,
- pkgs,
- ...
-}: let
- inherit (lib) mkIf;
- cfg = config.gaming.homestuck;
-in {
- config = mkIf cfg.enable {
- home.packages = [
- inputs.self.packages.${pkgs.system}.unofficial-homestuck-collection
- ];
- };
-}
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
- ];
- };
-}