minimum initial working flakes

This commit is contained in:
Noah Masur
2022-04-26 21:36:16 -04:00
parent 9e12221b43
commit c8381110c5
7 changed files with 137 additions and 10 deletions

View File

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