diff options
Diffstat (limited to 'home/gaming/homestuck.nix')
-rw-r--r-- | home/gaming/homestuck.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/home/gaming/homestuck.nix b/home/gaming/homestuck.nix new file mode 100644 index 0000000..20cc2f7 --- /dev/null +++ b/home/gaming/homestuck.nix @@ -0,0 +1,16 @@ +{ + lib, + config, + inputs, + pkgs, + ... +}: let + inherit (lib) mkIf; + cfg = config.gaming.homesuck; +in { + config = mkIf cfg.enable { + home.packages = [ + inputs.self.packages.${pkgs.system}.unofficial-homestuck-collection + ]; + }; +} |