Skip to content

Commit

Permalink
keybase: Fix modules
Browse files Browse the repository at this point in the history
(cherry picked from commit 8840eaf)
  • Loading branch information
NeQuissimus authored and grahamc committed Oct 7, 2017
1 parent 2231575 commit 3c0ea4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions nixos/modules/services/network-filesystems/kbfs.nix
Expand Up @@ -55,6 +55,7 @@ in {
Restart = "on-failure";
PrivateTmp = true;
};
wantedBy = [ "default.target" ];
};

services.keybase.enable = true;
Expand Down
3 changes: 2 additions & 1 deletion nixos/modules/services/networking/keybase.nix
Expand Up @@ -28,11 +28,12 @@ in {
description = "Keybase service";
serviceConfig = {
ExecStart = ''
${pkgs.keybase}/bin/keybase service
${pkgs.keybase}/bin/keybase -d service --auto-forked
'';
Restart = "on-failure";
PrivateTmp = true;
};
wantedBy = [ "default.target" ];
};

environment.systemPackages = [ pkgs.keybase ];
Expand Down

0 comments on commit 3c0ea4f

Please sign in to comment.