fix: correct indentation in systemd service definitions

Corrects the indentation in the systemd service and timer definitions within the default.nix configuration file. This improves the readability and maintenance of the code.
This commit is contained in:
Harald Hoyer 2024-06-27 13:16:11 +02:00
parent 8cd5ce67a9
commit 2b559eb9ad

View file

@ -32,8 +32,8 @@
xdg.enable = true; xdg.enable = true;
xdg.mime.enable = true; xdg.mime.enable = true;
/* ***************************************** /* *****************************************
systemd.user.services = { systemd.user.services = {
render_blog = { render_blog = {
Service = { Service = {
Type = "oneshot"; Type = "oneshot";
@ -59,16 +59,16 @@
}; };
Install.WantedBy = [ "default.target" ]; Install.WantedBy = [ "default.target" ];
}; };
}; };
systemd.user.timers = { systemd.user.timers = {
render_blog = { render_blog = {
Timer = { Timer = {
OnCalendar = "hourly"; OnCalendar = "hourly";
}; };
Install.WantedBy = [ "timers.target" ]; Install.WantedBy = [ "timers.target" ];
}; };
}; };
***************************** */ ***************************** */
} }