diff options
author | Freya Murphy <freya@freyacat.org> | 2025-09-29 12:34:03 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-09-29 12:34:03 -0400 |
commit | c4d17444e570ee8cd3b2b4a0fd45809d2469fb53 (patch) | |
tree | 11f92c159bb07945608e3e50a9898151b6759592 /home/gaming.nix | |
parent | update commits (diff) | |
download | dotfiles-nix-c4d17444e570ee8cd3b2b4a0fd45809d2469fb53.tar.gz dotfiles-nix-c4d17444e570ee8cd3b2b4a0fd45809d2469fb53.tar.bz2 dotfiles-nix-c4d17444e570ee8cd3b2b4a0fd45809d2469fb53.zip |
update commits
Diffstat (limited to 'home/gaming.nix')
-rw-r--r-- | home/gaming.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/home/gaming.nix b/home/gaming.nix new file mode 100644 index 0000000..8d389e5 --- /dev/null +++ b/home/gaming.nix @@ -0,0 +1,17 @@ +{ + lib, + config, + pkgs, + ... +}: let + inherit (lib) optionals; + cfg = config.gaming; +in { + home.packages = with pkgs; + (optionals cfg.homestuck.enable [ + unofficial-homestuck-collection + ]) + ++ (optionals cfg.minecraft.enable [ + prismlauncher + ]); +} |