nix hyprland settings exec-once to list of string instead of single string (#200)

This commit is contained in:
Hadi
2024-08-30 10:33:46 +02:00
committed by GitHub
parent f624153eab
commit 4bd5c3ed30

View File

@@ -145,11 +145,9 @@ home.packages = with pkgs; [
];
# or reference it directly in your Hyprland configuration
wayland.windowManager.hyprland.settings.exec-once = ''
# ...
${pkgs.hyprpanel}/bin/hyprpanel
# ...
'';
wayland.windowManager.hyprland.settings.exec-once = [
"${pkgs.hyprpanel}/bin/hyprpanel"
];
```