This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
emacs/flake.nix
Andrea Ciceri 3827eb4860
Some checks failed
/ test (push) Failing after 33s
Various fixes
2024-03-09 18:56:39 +01:00

51 lines
1.3 KiB
Nix

{
description = "My opinionated Emacs";
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
emacs-overlay.url = "github:nix-community/emacs-overlay";
nixpkgs.follows = "emacs-overlay/nixpkgs";
hercules-ci-effects.url = "github:hercules-ci/hercules-ci-effects";
extra-package-indent-bars = {
url = "github:jdtsmith/indent-bars";
flake = false;
};
extra-package-nix-ts-mode = {
url = "github:aciceri/nix-ts-mode/improved";
flake = false;
};
extra-package-combobulate = {
url = "github:mickeynp/combobulate";
flake = false;
};
extra-package-agenix-el = {
url = "github:t4ccer/agenix.el";
flake = false;
};
extra-package-chatgpt = {
url = "github:joshcho/ChatGPT.el";
flake = false;
};
extra-package-copilot = {
url = "github:zerolfx/copilot.el";
flake = false;
};
extra-package-notmuch-notify = {
url = "github:firmart/notmuch-notify";
flake = false;
};
};
outputs = inputs @ {flake-parts, ...}:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux" "aarch64-linux"];
imports = [
./packages
./hmModules
./formatter
# ./diff-closures
./checks
./ci
];
};
}