1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

xsettingsd: Remove erroneous lib. insertion (#6877)

This commit is contained in:
Johan Eklund 2025-04-22 14:34:49 +02:00 committed by GitHub
parent 81541ea36d
commit ce8dc1f77a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -101,7 +101,7 @@ in
Environment = [ "PATH=${config.home.profileDirectory}/bin" ];
ExecStart =
"${cfg.package}/bin/xsettingsd"
+ lib.optionalString (cfg.configFile != null) " -lib.c ${lib.escapeShellArg cfg.configFile}";
+ lib.optionalString (cfg.configFile != null) " -c ${lib.escapeShellArg cfg.configFile}";
Restart = "on-abort";
};
};