This commit is contained in:
2026-02-22 15:45:07 +00:00
parent ba58db5873
commit 93f81a1f7f
4 changed files with 15 additions and 18 deletions

View File

@@ -9,22 +9,12 @@
...
}:
{
home.file.".config/quickshell" = {
recursive = true;
source = config.lib.file.mkOutOfStoreSymlink ./quickshell;
};
systemd.user.services.quickshell = {
Unit = {
Description = "Quickshell daemon";
After = [ "hyprland-session.target" ];
};
Install = {
WantedBy = [ "default.target" ];
};
Service = {
ExecStart = "${pkgs.quickshell}/bin/quickshell";
Restart = "on-failure";
RestartSec = "5s";
programs.quickshell = {
systemd.enable = true;
enable = true;
activeConfig = "main";
configs = {
main = config.lib.file.mkOutOfStoreSymlink "/home/doloro/dotfiles/config/modules/quickshell/quickshell";
};
};
};