Files
nixos/modules/scripts/tomato.nix
T

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