From 7ff99d52065760bd716408a99118823fb56183c8 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 3 Nov 2024 21:32:44 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(bun):=20Install=20bun?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/programs/bun.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 home/programs/bun.nix diff --git a/home/programs/bun.nix b/home/programs/bun.nix new file mode 100644 index 0000000..7033aad --- /dev/null +++ b/home/programs/bun.nix @@ -0,0 +1,10 @@ +{ ... }: +{ + programs.bun = { + enable = true; + + settings = { + telemetry = false; + }; + }; +}