Files
nixos/modules/packages/custom-tomato.nix
T

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