mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
11 lines
193 B
Nix
11 lines
193 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.keybase.enable = true;
|
||
|
services.kbfs.enable = true;
|
||
|
|
||
|
# home.packages = with pkgs lib; [ (mkIf config.gui keybase-gui) ];
|
||
|
};
|
||
|
}
|