mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 00:53:55 -05:00
home/desktop: check if sway/hyprland are enabled before binding services
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
8dd1e5c113
commit
6aafa8969a
|
@ -13,9 +13,9 @@ in {
|
|||
};
|
||||
|
||||
systemd.user.services.gammastep = {
|
||||
Install.WantedBy = lib.mkForce ["hyprland-session.target" "sway-session.target"];
|
||||
Install.WantedBy = lib.mkForce (lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target");
|
||||
Service.Restart = lib.mkForce "no";
|
||||
Unit.BindsTo = ["hyprland-session.target" "sway-session.target"];
|
||||
Unit.BindsTo = lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ in {
|
|||
systemd.user.services.mako = {
|
||||
Unit = {
|
||||
After = "graphical-session.target";
|
||||
BindsTo = ["hyprland-session.target" "sway-session.target"];
|
||||
BindsTo = lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target";
|
||||
Description = "Lightweight Wayland notification daemon";
|
||||
Documentation = "man:mako(1)";
|
||||
PartOf = "graphical-session.target";
|
||||
|
@ -55,7 +55,7 @@ in {
|
|||
Type = "dbus";
|
||||
};
|
||||
|
||||
Install.WantedBy = ["hyprland-session.target" "sway-session.target"];
|
||||
Install.WantedBy = lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ in {
|
|||
systemd.user.services.pipewire-inhibit-idle = {
|
||||
Unit = {
|
||||
After = "graphical-session.target";
|
||||
BindsTo = ["hyprland-session.target" "sway-session.target"];
|
||||
BindsTo = lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target";
|
||||
Description = "inhibit idle when audio is playing with Pipewire.";
|
||||
PartOf = "graphical-session.target";
|
||||
};
|
||||
|
@ -20,7 +20,7 @@ in {
|
|||
Restart = "no";
|
||||
};
|
||||
|
||||
Install.WantedBy = ["hyprland-session.target" "sway-session.target"];
|
||||
Install.WantedBy = lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -89,7 +89,7 @@ in {
|
|||
systemd.user.services.randomWallpaper = {
|
||||
Unit = {
|
||||
After = "graphical-session.target";
|
||||
BindsTo = ["hyprland-session.target" "sway-session.target"];
|
||||
BindsTo = lib.optional (config.ar.home.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (config.ar.home.desktop.sway.enable) "sway-session.target";
|
||||
Description = "Lightweight swaybg-based random wallpaper daemon.";
|
||||
PartOf = "graphical-session.target";
|
||||
};
|
||||
|
@ -99,7 +99,7 @@ in {
|
|||
Restart = "no";
|
||||
};
|
||||
|
||||
Install.WantedBy = ["hyprland-session.target" "sway-session.target"];
|
||||
Install.WantedBy = lib.optional (config.ar.home.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (config.ar.home.desktop.sway.enable) "sway-session.target";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -59,9 +59,9 @@ in {
|
|||
};
|
||||
|
||||
systemd.user.services.swayidle = {
|
||||
Install.WantedBy = lib.mkForce ["hyprland-session.target" "sway-session.target"];
|
||||
Install.WantedBy = lib.mkForce (lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target");
|
||||
Service.Restart = lib.mkForce "no";
|
||||
Unit.BindsTo = ["hyprland-session.target" "sway-session.target"];
|
||||
Unit.BindsTo = lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -17,9 +17,9 @@ in {
|
|||
};
|
||||
|
||||
systemd.user.services.swayosd = {
|
||||
Install.WantedBy = lib.mkForce ["hyprland-session.target" "sway-session.target"];
|
||||
Install.WantedBy = lib.mkForce (lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target");
|
||||
Service.Restart = lib.mkForce "no";
|
||||
Unit.BindsTo = ["hyprland-session.target" "sway-session.target"];
|
||||
Unit.BindsTo = lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target";
|
||||
};
|
||||
|
||||
xdg.configFile."swayosd/style.css" = {
|
||||
|
|
|
@ -356,9 +356,9 @@ in {
|
|||
};
|
||||
|
||||
systemd.user.services.waybar = {
|
||||
Install.WantedBy = lib.mkForce ["hyprland-session.target" "sway-session.target"];
|
||||
Install.WantedBy = lib.mkForce (lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target");
|
||||
Service.Restart = lib.mkForce "no";
|
||||
Unit.BindsTo = ["hyprland-session.target" "sway-session.target"];
|
||||
Unit.BindsTo = lib.optional (cfg.desktop.hyprland.enable) "hyprland-session.target" ++ lib.optional (cfg.desktop.sway.enable) "sway-session.target";
|
||||
};
|
||||
|
||||
xdg.configFile."nwg-drawer/drawer.css".text = ''
|
||||
|
|
Loading…
Reference in a new issue