mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
15 lines
287 B
Nix
15 lines
287 B
Nix
{ ... }:
|
|
{
|
|
flake.packages.custom-tomato = { pkgs, ... }:
|
|
pkgs.writeShellApplication {
|
|
name = "custom-tomato";
|
|
runtimeInputs = with pkgs; [
|
|
kitty
|
|
tomato-c
|
|
];
|
|
text = ''
|
|
kitty --class "custom-pomodoro" --name "custom-pomodoro" -e tomato
|
|
'';
|
|
};
|
|
}
|