From 68dcce4cf4b3a9d6d12998604eea773eaaee1afa Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Wed, 8 Apr 2026 14:58:41 -0600 Subject: [PATCH] home: gaming: add ckan --- home/modules/gaming.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/home/modules/gaming.nix b/home/modules/gaming.nix index 191a8ff..88dab1e 100644 --- a/home/modules/gaming.nix +++ b/home/modules/gaming.nix @@ -11,10 +11,11 @@ in { enable = mkEnableOption "gaming apps"; }; config = mkIf cfg.enable { - home.packages = [ - pkgs.lutris - pkgs.openrct2 - pkgs.prismlauncher + home.packages = with pkgs; [ + ckan # ksp mod manager + lutris # game launcher + openrct2 # rollercoaster tycoon + prismlauncher # minecraft ]; }; }