diff options
author | Ben Sima <bsima@groq.com> | 2019-09-04 09:32:56 -0700 |
---|---|---|
committer | Ben Sima <bsima@groq.com> | 2022-01-05 10:41:58 -0800 |
commit | a5453be306032c1143d285ada2b5f2d5a19fcc11 (patch) | |
tree | 7f1d10ce48277e19c6167a0f3ed735b4c4a07bd9 | |
parent | d6b4769602b0444181ca1dd9af0e4591dce1117e (diff) |
groq: disable kbfs, run manually instead
-rw-r--r-- | profiles/groq.nix | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/profiles/groq.nix b/profiles/groq.nix index 95a0d2b..d84fd4d 100644 --- a/profiles/groq.nix +++ b/profiles/groq.nix @@ -33,9 +33,19 @@ in }; }; - services.emacs.enable = true; - services.keybase.enable = true; - services.kbfs.enable = true; + services = { + emacs.enable = true; + keybase.enable = true; + # idk why this doesn't work, will run it manually + #kbfs = { + # enable = true; + # mountPoint = "~/keybase"; + # fusermountLocation = "/bin/fusermount"; + # extraFlags = [ + # "-log-file ~/log/kbfs.log" + # ]; + #}; + }; home.packages = [ pkgs.kbfs |