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