From 687145cd31bef4b0d2662dc5b04163a869f23d7f Mon Sep 17 00:00:00 2001 From: Tad Fisher Date: Tue, 28 Nov 2017 16:17:55 -0800 Subject: [PATCH] kbfs: add binaries to user profile Add the binaries produced by 'pkgs.kbfs' to the profile, so that the git-remote-keybase helper can work automatically with 'keybase://' remotes. --- modules/services/kbfs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/services/kbfs.nix b/modules/services/kbfs.nix index c1991732..15d24596 100644 --- a/modules/services/kbfs.nix +++ b/modules/services/kbfs.nix @@ -61,6 +61,7 @@ in }; }; + home.packages = [ pkgs.kbfs ]; services.keybase.enable = true; }; }