- packages.nix: essential packages (jq, ripgrep, fd, htop, coreutils, lazygit, httpie, just, devenv, gcc, go, sqlite, sqlite-vec, nix-index, nix-update, progress, comma, fabric-ai, llm, basecamp, hyprpaper-random, libnotify, trash-cli, unzip, zip, yazi) - bat.nix: bat with nix-colors derived syntax theme - carapace.nix: multi-shell completion (fish, nushell, bash) - direnv.nix: automatic env loading with nix-direnv - eza.nix: modern ls with icons, git status, long format - lf.nix: terminal file manager with bat preview - zoxide.nix: smarter cd with fish and nushell integration - zellij-ps.nix: project session manager wrapping cli.zellij-ps
28 lines
671 B
Nix
28 lines
671 B
Nix
# Zellij-ps — project-aware Zellij session manager from m3ta-nixpkgs.
|
|
# Delegates to the cli.zellij-ps module provided by inputs.m3ta-nixpkgs.
|
|
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.base.cliTools.zellijPs;
|
|
in {
|
|
options.base.cliTools.zellijPs = {
|
|
enable = mkEnableOption "enable zellij-ps project session manager";
|
|
|
|
projectFolders = mkOption {
|
|
type = types.listOf types.path;
|
|
description = "Project root folders scanned by zellij-ps.";
|
|
default = ["${config.home.homeDirectory}/p"];
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
cli.zellij-ps = {
|
|
enable = true;
|
|
projectFolders = cfg.projectFolders;
|
|
};
|
|
};
|
|
}
|