10 lines
161 B
Nix
10 lines
161 B
Nix
{
|
|
powerManagement = {
|
|
powerUpCommands = ''
|
|
echo "timelog: powerUp"
|
|
'';
|
|
powerDownCommands = ''
|
|
echo "timelog: powerDown"
|
|
'';
|
|
};
|
|
}
|