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/hydra/default.nix
2023-04-08 11:51:25 +02:00

10 lines
186 B
Nix

{self, ...}: {
flake.hydraJobs = {
packages = self.packages;
};
perSystem = {pkgs, ...}: {
packages.hydraHook = pkgs.writeScript "hook" ''
echo ciao
'';
};
}