mirror of
https://github.com/srid/nixos-config.git
synced 2026-05-01 11:25:40 +08:00
zellij-one
This commit is contained in:
parent
ace0f50ace
commit
3dbdf74950
3 changed files with 14 additions and 0 deletions
|
|
@ -29,5 +29,6 @@ in
|
|||
|
||||
home.packages = [
|
||||
inputs.disc-scrape.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||
pkgs.zellij-one
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,6 +49,7 @@ in
|
|||
sshuttle-via
|
||||
entr
|
||||
hackage-publish
|
||||
zellij-one
|
||||
|
||||
# Fonts
|
||||
cascadia-code
|
||||
|
|
|
|||
12
packages/zellij-one.nix
Normal file
12
packages/zellij-one.nix
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue