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

View file

@ -29,5 +29,6 @@ in
home.packages = [
inputs.disc-scrape.packages.${pkgs.stdenv.hostPlatform.system}.default
pkgs.zellij-one
];
}

View file

@ -49,6 +49,7 @@ in
sshuttle-via
entr
hackage-publish
zellij-one
# Fonts
cascadia-code

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
'';
}