3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/nixos/modules/programs/haguichi.nix

16 lines
349 B
Nix
Raw Normal View History

2022-04-23 15:24:36 +01:00
{ lib, pkgs, config, ... }:
with lib;
{
options.programs.haguichi = {
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;
};
}