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

11 lines
278 B
Nix
Raw Normal View History

2022-03-08 01:42:46 +00:00
{pkgs, ...}: {
2020-08-15 01:12:48 +00:00
systemd.user.services.hoogle = {
Unit.Description = "Hoogle server";
2022-03-08 01:42:46 +00:00
Install.WantedBy = ["graphical-session.target"];
2020-08-15 01:12:48 +00:00
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";
};
};
}