about summary refs log tree commit diff
path: root/nixos/modules/programs/haguichi.nix
blob: 699327c28c61fb849cc6abbf1ee1abccaf14518e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, pkgs, config, ... }:

with lib;

{
  options.programs.haguichi = {
    enable = mkEnableOption (lib.mdDoc "Haguichi, a Linux GUI frontend to the proprietary LogMeIn Hamachi");
  };

  config = mkIf config.programs.haguichi.enable {
    environment.systemPackages = with pkgs; [ haguichi ];

    services.logmein-hamachi.enable = true;
  };
}