mirror of
https://github.com/srid/nixos-config.git
synced 2026-05-07 22:56:13 +08:00
12 lines
262 B
Nix
12 lines
262 B
Nix
{ 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
|
|
'';
|
|
}
|