about summary refs log tree commit diff
path: root/nixos/modules/programs/haguichi.nix
blob: 4f48551cf1dacf8a025053d521f91715eabb1221 (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 "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;
  };
}