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 + ]) + ; +}