mirror of
https://github.com/srid/nixos-config.git
synced 2026-07-16 22:01:33 +08:00
12 lines
267 B
Nix
12 lines
267 B
Nix
{ writeShellApplication, zellij, ... }:
|
|
|
|
writeShellApplication {
|
|
name = "zellij-one";
|
|
meta.description = ''
|
|
Create or attach to a singular zellij session named 'one'.
|
|
'';
|
|
runtimeInputs = [ zellij ];
|
|
text = ''
|
|
exec zellij attach --create one
|
|
'';
|
|
}
|