mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
15 lines
312 B
Nix
15 lines
312 B
Nix
_: {
|
|
perSystem = {pkgs, ...}: {
|
|
packages.custom-tomato = pkgs.writeShellApplication {
|
|
name = "custom-tomato";
|
|
runtimeInputs = with pkgs; [
|
|
kitty
|
|
tomato-c
|
|
];
|
|
text = ''
|
|
kitty --class "custom-pomodoro" --name "custom-pomodoro" -e tomato
|
|
'';
|
|
};
|
|
};
|
|
}
|