mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 18:30:46 +02:00
17 lines
246 B
Nix
17 lines
246 B
Nix
{
|
|
writeShellApplication,
|
|
kitty,
|
|
tomato-c,
|
|
...
|
|
}:
|
|
writeShellApplication {
|
|
name = "custom-tomato";
|
|
runtimeInputs = [
|
|
kitty
|
|
tomato-c
|
|
];
|
|
text = ''
|
|
kitty --class "custom-pomodoro" --name "custom-pomodoro" -e tomato
|
|
'';
|
|
}
|