From 11da41e106483f253e16661bf4a6f34b044c31ed 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 c19917327..15d245960 100644 --- a/modules/services/kbfs.nix +++ b/modules/services/kbfs.nix @@ -61,6 +61,7 @@ in }; }; + home.packages = [ pkgs.kbfs ]; services.keybase.enable = true; }; }