summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/haguichi.nix
blob: 39b28cc7f04722c940668822703ef9b27b773576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  lib,
  pkgs,
  config,
  ...
}:

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

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

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