Auto: cleanup-2026-05-24T10-18-36Z

This commit is contained in:
2026-05-24 12:18:49 +02:00
parent 4dc460dc0c
commit 16c01a5e67
71 changed files with 1770 additions and 1731 deletions
+12 -13
View File
@@ -1,15 +1,14 @@
{ ... }:
{
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
'';
_: {
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
'';
};
};
};
}