├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.md ├── README.org ├── elisp.nix ├── flake.lock ├── flake.nix ├── overlays ├── emacs.nix ├── icons │ └── Emacs.icns ├── patches-29 │ ├── fix-window-role.patch │ ├── round-undecorated-frame.patch │ └── system-appearance.patch ├── patches-30 │ ├── fix-window-role.patch │ ├── round-undecorated-frame.patch │ └── system-appearance.patch └── patches-unstable │ ├── round-undecorated-frame.patch │ └── system-appearance.patch ├── packreq.nix ├── parse.nix ├── repos ├── emacs │ ├── 29.json │ ├── 30.json │ ├── unstable.json │ └── update └── fromElisp │ ├── default.nix │ └── update ├── test └── build-emacs │ ├── config.org │ └── default.nix └── update /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /result 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/README.org -------------------------------------------------------------------------------- /elisp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/elisp.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/flake.nix -------------------------------------------------------------------------------- /overlays/emacs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/emacs.nix -------------------------------------------------------------------------------- /overlays/icons/Emacs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/icons/Emacs.icns -------------------------------------------------------------------------------- /overlays/patches-29/fix-window-role.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/patches-29/fix-window-role.patch -------------------------------------------------------------------------------- /overlays/patches-29/round-undecorated-frame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/patches-29/round-undecorated-frame.patch -------------------------------------------------------------------------------- /overlays/patches-29/system-appearance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/patches-29/system-appearance.patch -------------------------------------------------------------------------------- /overlays/patches-30/fix-window-role.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/patches-30/fix-window-role.patch -------------------------------------------------------------------------------- /overlays/patches-30/round-undecorated-frame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/patches-30/round-undecorated-frame.patch -------------------------------------------------------------------------------- /overlays/patches-30/system-appearance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/patches-30/system-appearance.patch -------------------------------------------------------------------------------- /overlays/patches-unstable/round-undecorated-frame.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/patches-unstable/round-undecorated-frame.patch -------------------------------------------------------------------------------- /overlays/patches-unstable/system-appearance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/overlays/patches-unstable/system-appearance.patch -------------------------------------------------------------------------------- /packreq.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/packreq.nix -------------------------------------------------------------------------------- /parse.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/parse.nix -------------------------------------------------------------------------------- /repos/emacs/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/repos/emacs/29.json -------------------------------------------------------------------------------- /repos/emacs/30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/repos/emacs/30.json -------------------------------------------------------------------------------- /repos/emacs/unstable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/repos/emacs/unstable.json -------------------------------------------------------------------------------- /repos/emacs/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/repos/emacs/update -------------------------------------------------------------------------------- /repos/fromElisp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/repos/fromElisp/default.nix -------------------------------------------------------------------------------- /repos/fromElisp/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/repos/fromElisp/update -------------------------------------------------------------------------------- /test/build-emacs/config.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/test/build-emacs/config.org -------------------------------------------------------------------------------- /test/build-emacs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/test/build-emacs/default.nix -------------------------------------------------------------------------------- /update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-giant/nix-darwin-emacs/HEAD/update --------------------------------------------------------------------------------