diff options
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; |