diff options
author | sefidel <contact@sefidel.net> | 2023-09-16 19:20:11 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-09-16 19:20:11 +0900 |
commit | 559f73fad74c0ac2e50f68b751e9390b40fe622f (patch) | |
tree | c24927c3569fb5fcd379a4f7ebc48f4fff9cb356 /home | |
parent | c81605c37f9c6358b0911d8d055f45ce56dfb911 (diff) | |
download | nixrc-559f73fad74c0ac2e50f68b751e9390b40fe622f.tar.gz nixrc-559f73fad74c0ac2e50f68b751e9390b40fe622f.zip |
feat(home/base): zellij: add hdev layout
Diffstat (limited to 'home')
-rw-r--r-- | home/profiles/base/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix index e6996d5..318031f 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -201,6 +201,21 @@ in } ''; + xdg.configFile."zellij/layouts/hdev.kdl".text = '' + layout { + pane size=1 borderless=true { + plugin location="zellij:tab-bar" + } + pane split_direction="horizontal" { + pane size="80%" command="nvim" + pane size="20%" + } + pane size=2 borderless=true { + plugin location="zellij:status-bar" + } + } + ''; + services = { gpg-agent = lib.mkIf pkgs.stdenv.isLinux { enable = true; |