aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2024-05-20 18:59:33 +0530
committerAkshay Nair <phenax5@gmail.com>2024-05-20 18:59:33 +0530
commit7661eb5a323a552ada3f83e46c59bfa2753cf8e7 (patch)
tree2c7c100357e432b2a33c38f0f081816f372c0447
parent0a89dfc3ae06a61c0f5c3d91896e66926e37379f (diff)
downloadnixos-config-7661eb5a323a552ada3f83e46c59bfa2753cf8e7.tar.gz
nixos-config-7661eb5a323a552ada3f83e46c59bfa2753cf8e7.zip
Add keybase
Diffstat (limited to '')
-rw-r--r--config/lf/lfrc1
-rw-r--r--home.nix5
-rw-r--r--modules/keybase.home.nix6
3 files changed, 10 insertions, 2 deletions
diff --git a/config/lf/lfrc b/config/lf/lfrc
index f1db19a..3ab9a08 100644
--- a/config/lf/lfrc
+++ b/config/lf/lfrc
@@ -133,4 +133,5 @@ map gp cd ~/Pictures
map gsc cd ~/Pictures/screenshots
map gmnt cd /run/media/imsohexy
map gdc cd ~/Documents
+map gkb cd /run/user/1000/keybase/kbfs
diff --git a/home.nix b/home.nix
index 0fe08ee..d089c4c 100644
--- a/home.nix
+++ b/home.nix
@@ -5,10 +5,11 @@ in
{
imports = [
./overlays-home.nix
- ./modules/music.home.nix
./modules/git.home.nix
- ./modules/xresources.home.nix
+ ./modules/keybase.home.nix
./modules/mpv.home.nix
+ ./modules/music.home.nix
+ ./modules/xresources.home.nix
];
home.packages = with pkgs; [
diff --git a/modules/keybase.home.nix b/modules/keybase.home.nix
new file mode 100644
index 0000000..25db6f2
--- /dev/null
+++ b/modules/keybase.home.nix
@@ -0,0 +1,6 @@
+{ config, pkgs, ... }:
+{
+ services.kbfs.enable = true;
+ services.keybase.enable = true;
+}
+