From 445705fd23315530ec43ce46490b988ed26ade02 Mon Sep 17 00:00:00 2001 From: albert Date: Mon, 29 Apr 2024 13:55:26 +0900 Subject: [PATCH] Add Zellij --- home-manager/common/software/cli/zellij.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 home-manager/common/software/cli/zellij.nix diff --git a/home-manager/common/software/cli/zellij.nix b/home-manager/common/software/cli/zellij.nix new file mode 100644 index 00000000..8b5ee42f --- /dev/null +++ b/home-manager/common/software/cli/zellij.nix @@ -0,0 +1,8 @@ +{ ... }: { + programs.zellij = { + enable = true; + enableBashIntegration = true; + enableFishIntegration = true; + settings = ''''; + }; +}