nixos/code-server: fix ignored socketMode option (#462654)

This commit is contained in:
Aleksana
2025-11-19 10:22:15 +00:00
committed by GitHub
@@ -232,6 +232,9 @@ in
+ lib.optionalString (cfg.socket != null) ''
--socket=${cfg.socket} \
''
+ lib.optionalString (cfg.socketMode != null) ''
--socket-mode=${cfg.socketMode} \
''
+ lib.optionalString (cfg.userDataDir != null) ''
--user-data-dir=${cfg.userDataDir} \
''