From 36001249065acf9ad1934d687297d9d40cba16fb Mon Sep 17 00:00:00 2001 From: Origami404 Date: Sun, 18 Jan 2026 16:45:24 +0800 Subject: [PATCH] =?UTF-8?q?[darwin]=20=E8=BF=81=E7=A7=BB=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=20brew=20=E7=AE=A1=E7=90=86=E7=9A=84=E5=8C=85=E8=BF=9B?= =?UTF-8?q?=E6=9D=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/hosts/hypnos.nix | 1 + home/modules/darwin-packages.nix | 35 ++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 home/modules/darwin-packages.nix diff --git a/home/hosts/hypnos.nix b/home/hosts/hypnos.nix index f00962c..6fa38b7 100644 --- a/home/hosts/hypnos.nix +++ b/home/hosts/hypnos.nix @@ -8,6 +8,7 @@ ../modules/shell.nix ../modules/shell-develop.nix ../modules/vscode.nix + ../modules/darwin-packages.nix ]; programs.fish.shellAliases = { diff --git a/home/modules/darwin-packages.nix b/home/modules/darwin-packages.nix new file mode 100644 index 0000000..338b59c --- /dev/null +++ b/home/modules/darwin-packages.nix @@ -0,0 +1,35 @@ +{ pkgs, ... }: +{ + home.packages = + (with pkgs; [ + autoconf + coreutils + gawk + gnused + gnutar + gnugrep + gnumake + pkgconf + unar + + codex + + helix + uv + typst + pandoc + + # localsend + + # zotero + # logseq + # telegram-desktop + + # unnaturalscrollwheels + + # noto-fonts-cjk-sans + # sarasa-gothic + # source-code-pro + ]) + ; +}