alejandra: fmt

This commit is contained in:
hand7s 2025-04-27 12:47:02 +03:00
parent 4132420034
commit 510e39c245
No known key found for this signature in database
199 changed files with 1030 additions and 1438 deletions

View file

@ -1,29 +1,26 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
systemd = {
user = {
services = {
hyprpanel = {
Unit = {
Description = "Hyprpanel service.";
WantedBy = "graphical-session.target";
};
Service = {
ExecStart = "${pkgs.hyprpanel}/bin/hyprpanel";
Restart = "always";
RestartSec = 1;
};
user = {
services = {
hyprpanel = {
Unit = {
Description = "Hyprpanel service.";
WantedBy = "graphical-session.target";
};
Install = {
After = "graphical-session.target";
ConditionEnvironment = "WAYLAND_DISPLAY";
PartOf = "graphical-session.target";
};
};
};
};
};
Service = {
ExecStart = "${pkgs.hyprpanel}/bin/hyprpanel";
Restart = "always";
RestartSec = 1;
};
Install = {
After = "graphical-session.target";
ConditionEnvironment = "WAYLAND_DISPLAY";
PartOf = "graphical-session.target";
};
};
};
};
};
}

View file

@ -1,29 +1,26 @@
{
pkgs,
...
}: {
systemd = {
user = {
services = {
hyprpolkitagent = {
Unit = {
Description = "Hyprpolkitagent service.";
WantedBy = "graphical-session.target";
};
Service = {
ExecStart = "${pkgs.hyprpolkitagent}/libexec/hyprpolkitagent";
Restart = "always";
RestartSec = 10;
};
{pkgs, ...}: {
systemd = {
user = {
services = {
hyprpolkitagent = {
Unit = {
Description = "Hyprpolkitagent service.";
WantedBy = "graphical-session.target";
};
Install = {
After = "graphical-session.target";
ConditionEnvironment = "WAYLAND_DISPLAY";
PartOf = "graphical-session.target";
};
};
};
};
};
Service = {
ExecStart = "${pkgs.hyprpolkitagent}/libexec/hyprpolkitagent";
Restart = "always";
RestartSec = 10;
};
Install = {
After = "graphical-session.target";
ConditionEnvironment = "WAYLAND_DISPLAY";
PartOf = "graphical-session.target";
};
};
};
};
};
}

View file

@ -1,29 +1,26 @@
{
pkgs,
...
}: {
{pkgs, ...}: {
systemd = {
user = {
services = {
yambar = {
Unit = {
Description = "Yambar service.";
WantedBy = "graphical-session.target";
};
Service = {
ExecStart = "${pkgs.yambar}/bin/yambar";
Restart = "always";
RestartSec = 1;
};
user = {
services = {
yambar = {
Unit = {
Description = "Yambar service.";
WantedBy = "graphical-session.target";
};
Install = {
After = "graphical-session.target";
ConditionEnvironment = "WAYLAND_DISPLAY";
PartOf = "graphical-session.target";
};
};
};
};
};
Service = {
ExecStart = "${pkgs.yambar}/bin/yambar";
Restart = "always";
RestartSec = 1;
};
Install = {
After = "graphical-session.target";
ConditionEnvironment = "WAYLAND_DISPLAY";
PartOf = "graphical-session.target";
};
};
};
};
};
}