f74735c9d7
Since https://github.com/NixOS/nixpkgs/pull/61321, local-fs.target is part of sysinit.target again, meaning units without DefaultDependencies=no will automatically depend on it, and the manual set dependencies can be dropped.
51 lines
811 B
Nix
51 lines
811 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.logmein-hamachi;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.logmein-hamachi.enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description =
|
|
''
|
|
Whether to enable LogMeIn Hamachi, a proprietary
|
|
(closed source) commercial VPN software.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd.services.logmein-hamachi = {
|
|
description = "LogMeIn Hamachi Daemon";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
ExecStart = "${pkgs.logmein-hamachi}/bin/hamachid";
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.logmein-hamachi ];
|
|
|
|
};
|
|
|
|
}
|