2022-04-23 16:24:36 +02:00
|
|
|
{ lib, pkgs, config, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
options.programs.haguichi = {
|
2022-08-28 21:18:44 +02:00
|
|
|
enable = mkEnableOption (lib.mdDoc "Haguichi, a Linux GUI frontend to the proprietary LogMeIn Hamachi");
|
2022-04-23 16:24:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.programs.haguichi.enable {
|
|
|
|
environment.systemPackages = with pkgs; [ haguichi ];
|
|
|
|
|
|
|
|
services.logmein-hamachi.enable = true;
|
|
|
|
};
|
|
|
|
}
|