diff options
author | Ben Sima <bsima@groq.com> | 2019-09-03 10:57:09 -0700 |
---|---|---|
committer | Ben Sima <bsima@groq.com> | 2022-01-05 10:41:58 -0800 |
commit | d6b4769602b0444181ca1dd9af0e4591dce1117e (patch) | |
tree | 69ec642dabdd041394a2c74c81e8556bd45426da | |
parent | f0fe954d20f89688d089360f2a096deeca0d37be (diff) |
groq: fixup paths to lib and activate keybase
-rw-r--r-- | profiles/groq.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/profiles/groq.nix b/profiles/groq.nix index dc7df02..95a0d2b 100644 --- a/profiles/groq.nix +++ b/profiles/groq.nix @@ -1,7 +1,7 @@ { pkgs, ... }: let - gitCommitTemplate = ./git-commit-template; + gitCommitTemplate = ./lib/git-commit-template; in { imports = [ @@ -34,10 +34,17 @@ in }; services.emacs.enable = true; + services.keybase.enable = true; + services.kbfs.enable = true; + home.packages = [ + pkgs.kbfs + pkgs.keybase-gui + ]; programs = { emacs = { enable = true; + extraPackages = epkgs: import ./lib/emacs-packages.nix { inherit epkgs; }; }; git = { |