1
0
Fork 0
nixos-config/home-manager/roles/hoogle.nix
2020-08-15 03:12:48 +02:00

11 lines
270 B
Nix

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