mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
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;
|
|
};
|
|
}
|