zellij-one

This commit is contained in:
Sridhar Ratnakumar 2026-03-12 17:00:59 -04:00
parent ace0f50ace
commit 3dbdf74950
3 changed files with 14 additions and 0 deletions

12
packages/zellij-one.nix Normal file
View file

@ -0,0 +1,12 @@
{ writeShellApplication, zellij, ... }:
writeShellApplication {
name = "zellij-one";
meta.description = ''
Create or attach to a singular zellij session named 'one'.
'';
runtimeInputs = [ zellij ];
text = ''
zellij attach --create one
'';
}