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 6879b11b9a
All checks were successful
/ test (push) Successful in 17s
Things
2024-08-21 12:47:16 +02:00

31 lines
790 B
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-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
];
};
}