aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorOphestra Umiker <cat@ophivana.moe>2024-09-09 23:29:16 +0900
committerOphestra Umiker <cat@ophivana.moe>2024-09-09 23:29:16 +0900
commit88ac05be6dbb927d24b2c1e2950a3b1055158a3c (patch)
treec79ca9d0297904c2c1a88fe3c654c5650a53fb70
parent0ef321ad6f4273ae028a278dde43a3119f5f37a7 (diff)
nix: fix typo in nixos module implementation previously missed due to lazy eval
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
-rw-r--r--nixos.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos.nix b/nixos.nix
index 5f48e8fa..e2ae406e 100644
--- a/nixos.nix
+++ b/nixos.nix
@@ -247,7 +247,7 @@ in
+ (if dbus then " -dbus" else "")
+ (if pulse then " -pulse" else "")
+ (if launcher.dbus.mpris then " -mpris" else "")
- + (if launcher.dbus.id != null then " -dbus-id ${dbus.id}" else "")
+ + (if launcher.dbus.id != null then " -dbus-id ${launcher.dbus.id}" else "")
+ (if dbusConfig != null then " -dbus-config ${dbusConfig}" else "")
+ (if dbusSystem != null then " -dbus-system ${dbusSystem}" else "")
+ (if launcher.method == "fortify-sudo" then " -sudo" else "");