more flakiness

This commit is contained in:
Noah Masur
2022-04-27 09:23:26 -04:00
parent c8381110c5
commit f9d106e27d
7 changed files with 18 additions and 11 deletions

View File

@ -1,10 +1,13 @@
{ config, pkgs, lib, ... }:
{
let gui = config.gui;
in {
config = {
services.keybase.enable = true;
services.kbfs.enable = true;
# home.packages = with pkgs lib; [ (mkIf config.gui keybase-gui) ];
# home.packages = with lib; with pkgs; [ (mkIf gui.enable keybase-gui) ];
};
}