sneeuwvlok/modules/home/shell/toolset/zellij.nix
Chris Kruining a03240d99d
more work
2025-07-28 14:34:40 +02:00

22 lines
427 B
Nix

{ config, lib, pkgs, user, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.shell.toolset.zellij;
in
{
options.${namespace}.shell.toolset.zellij = {
enable = mkEnableOption "terminal multiplexer";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [ zellij ];
programs.zellij = {
enable = true;
attachExistingSession = true;
settings = {};
};
};
}