This commit is contained in:
Christoph Schmatzler
2025-08-11 15:31:58 +02:00
parent d42c160ea8
commit eed26292fb
6 changed files with 11 additions and 23 deletions

View File

@@ -91,6 +91,7 @@ in {
imports = [
nixvim.homeModules.nixvim
../base/home-manager
./home-manager/zellij.nix
];
home = {
packages = pkgs.callPackage ../base/packages.nix {} ++ pkgs.callPackage ./packages.nix {};

View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
programs.zellij = {
enableFishIntegration = true;
};
}