1

Modules/Hyprpanel: Add option to control systemd startup

This commit is contained in:
2025-11-14 14:20:41 +01:00
parent a27dc9859b
commit 428b96ff07
2 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,7 @@ in {
config = lib.mkIf hyprpanel.enable {
programs.hyprpanel = {
enable = true;
systemd.enable = false;
systemd.enable = hyprpanel.systemd.enable;
settings = {
#

View File

@ -5,5 +5,6 @@
}:
with lib;
with mylib.modules; {
enable = mkEnableOption "hyprpanel";
enable = mkEnableOption "Enable Hyprpanel";
systemd.enable = mkEnableOption "Start using systemd";
}