diff --git a/hosts/copper/services/default.nix b/hosts/copper/services/default.nix index 93eb10c..663c3a8 100644 --- a/hosts/copper/services/default.nix +++ b/hosts/copper/services/default.nix @@ -2,6 +2,7 @@ imports = [ ./illuminanced.nix ./ntfy.nix + ./timelog.nix ./webdev.nix ]; } diff --git a/hosts/copper/services/timelog.nix b/hosts/copper/services/timelog.nix new file mode 100644 index 0000000..3343897 --- /dev/null +++ b/hosts/copper/services/timelog.nix @@ -0,0 +1,10 @@ +{ + powerManagement = { + powerUpCommands = '' + echo "timelog: powerUp" + ''; + powerDownCommands = '' + echo "timelog: powerDown" + ''; + }; +}