1
0
Fork 0
nixos-config/home-manager/roles/hoogle.nix
Malte Brandy 57123b08e1 Reformat
2022-03-08 02:42:46 +01:00

11 lines
278 B
Nix

{pkgs, ...}: {
systemd.user.services.hoogle = {
Unit.Description = "Hoogle server";
Install.WantedBy = ["graphical-session.target"];
Service = {
ExecStart = "${pkgs.ghcWithPackages}/bin/hoogle server --local --links";
Restart = "always";
};
};
}