mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
15 lines
302 B
Nix
15 lines
302 B
Nix
# used for the terminal autostart. Needs to get cleared and recall fastfetch so that the bar from oh-my-zsh get resized
|
|
|
|
{ writeShellApplication, kitty, tomato-c,... }:
|
|
|
|
writeShellApplication {
|
|
name = "custom-tomato";
|
|
runtimeInputs = [
|
|
kitty
|
|
tomato-c
|
|
];
|
|
text = ''
|
|
kitty -e tomato
|
|
'';
|
|
}
|