1
0
Fork 0
nixos-config/home-manager/roles/hoogle.nix
2021-01-04 19:20:00 +01:00

12 lines
282 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";
};
};
}