41 lines
678 B
Nix
41 lines
678 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.services.keybase;
|
||
|
|
||
|
in {
|
||
|
|
||
|
###### interface
|
||
|
|
||
|
options = {
|
||
|
|
||
|
services.keybase = {
|
||
|
|
||
|
enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = "Whether to start the Keybase service.";
|
||
|
};
|
||
|
|
||
|
};
|
||
|
};
|
||
|
|
||
|
###### implementation
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
|
||
|
systemd.user.services.keybase = {
|
||
|
description = "Keybase service";
|
||
|
serviceConfig = {
|
||
|
ExecStart = ''
|
||
|
${pkgs.keybase}/bin/keybase service
|
||
|
'';
|
||
|
Restart = "on-failure";
|
||
|
PrivateTmp = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = [ pkgs.keybase ];
|
||
|
};
|
||
|
}
|