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 e9d737a..e68a00f 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -238,6 +238,21 @@ in }; }; + xdg.configFile."zellij/layouts/sdev.kdl".text = '' + layout { + pane size=1 borderless=true { + plugin location="zellij:tab-bar" + } + pane split_direction="vertical" { + pane size="80%" command="hx" + pane size="20%" + } + pane size=2 borderless=true { + plugin location="zellij:status-bar" + } + } + ''; + services = { gpg-agent = lib.mkIf pkgs.stdenv.isLinux { enable = true; |