mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
25 lines
693 B
Nix
25 lines
693 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.twingate;
|
|
in
|
|
{
|
|
options.services.twingate = {
|
|
enable = lib.mkEnableOption (lib.mdDoc "Twingate Client daemon");
|
|
package = lib.mkPackageOptionMD pkgs "twingate" { };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
systemd.packages = [ cfg.package ];
|
|
systemd.services.twingate = {
|
|
preStart = "cp -r --update=none ${cfg.package}/etc/twingate/. /etc/twingate/";
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
|
|
networking.firewall.checkReversePath = lib.mkDefault "loose";
|
|
services.resolved.enable = !(config.networking.networkmanager.enable);
|
|
|
|
environment.systemPackages = [ cfg.package ]; # For the CLI.
|
|
};
|
|
}
|