1
0
Fork 0
nixos-config/home-manager/roles/hoogle.nix

12 lines
282 B
Nix
Raw Normal View History

2020-08-15 01:12:48 +00:00
{ pkgs, ... }:
{
systemd.user.services.hoogle = {
Unit.Description = "Hoogle server";
Install.WantedBy = [ "graphical-session.target" ];
Service = {
2021-01-04 18:20:00 +00:00
ExecStart = "${pkgs.ghcWithPackages}/bin/hoogle server --local --links";
2020-08-15 01:12:48 +00:00
Restart = "always";
};
};
}