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