16 lines
337 B
Nix
16 lines
337 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|