diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-09-09 23:29:16 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-09-09 23:29:16 +0900 |
| commit | 88ac05be6dbb927d24b2c1e2950a3b1055158a3c (patch) | |
| tree | c79ca9d0297904c2c1a88fe3c654c5650a53fb70 | |
| parent | 0ef321ad6f4273ae028a278dde43a3119f5f37a7 (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.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ""); |
