mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
12 lines
199 B
Nix
12 lines
199 B
Nix
{ desktop, lib, ... }: {
|
|
imports = [ ] ++ lib.optionals (desktop != null) [
|
|
./keybase-gui.nix
|
|
];
|
|
|
|
services = {
|
|
kbfs = {
|
|
enable = true;
|
|
mountPoint = "Keybase";
|
|
};
|
|
};
|
|
}
|