we will never know what all the changes are in this commit

This commit is contained in:
mrfluffy-dev
2025-10-02 12:51:22 +01:00
parent cfa57e9a3f
commit b9fb4b9515
10 changed files with 564 additions and 106 deletions

View File

@@ -7,26 +7,26 @@
...
}:
let
quickshellPackage = inputs.caelestia.packages.${pkgs.system}.caelestia-shell;
#quickshellPackage = inputs.caelestia.packages.${pkgs.system}.caelestia-shell;
in
{
systemd.user.services.quickshell = lib.mkIf (window_manager == "hyprland") {
Unit = {
Description = "QuickShell Application";
After = [ "graphical-session.target" ];
Requires = [ "graphical-session.target" ];
};
#systemd.user.services.quickshell = lib.mkIf (window_manager == "hyprland") {
# Unit = {
# Description = "QuickShell Application";
# After = [ "graphical-session.target" ];
# Requires = [ "graphical-session.target" ];
# };
Service = {
Type = "simple";
ExecStart = "${quickshellPackage}/bin/caelestia-shell";
ExecStartPre = "/bin/sh -c 'test -n \"$WAYLAND_DISPLAY\"'";
Restart = "always";
RestartSec = "5s";
};
# Service = {
# Type = "simple";
# ExecStart = "${quickshellPackage}/bin/caelestia-shell";
# ExecStartPre = "/bin/sh -c 'test -n \"$WAYLAND_DISPLAY\"'";
# Restart = "always";
# RestartSec = "5s";
# };
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
# Install = {
# WantedBy = [ "graphical-session.target" ];
# };
#};
}