Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add wasmtime

+8 -1
+8 -1
home/development/js.nix
··· 20 20 default = cfg.js.enable; 21 21 type = types.bool; 22 22 }; 23 + 24 + wasmtime = mkOption { 25 + default = cfg.js.enable; 26 + type = types.bool; 27 + }; 23 28 }; 24 29 25 30 config = mkIf cfg.js.enable { ··· 66 71 home.packages = with pkgs; [ 67 72 corepack_22 68 73 nodejs_22 69 - ] ++ optionals cfg.js.bun [ pkgs.bun ]; 74 + ] 75 + ++ optionals cfg.js.bun [ pkgs.bun ] 76 + ++ optionals cfg.js.wasmtime [ pkgs.wasmtime ]; 70 77 }; 71 78 }