Add basic logging for powerUp and powerDown

This commit is contained in:
Jakob Lechner 2025-07-18 10:34:49 +02:00
parent e7d50d0b11
commit ecec4e9e59
2 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,7 @@
imports = [
./illuminanced.nix
./ntfy.nix
./timelog.nix
./webdev.nix
];
}

View file

@ -0,0 +1,10 @@
{
powerManagement = {
powerUpCommands = ''
echo "timelog: powerUp"
'';
powerDownCommands = ''
echo "timelog: powerDown"
'';
};
}