Summary
In nix/modules/user-paths.nix, config and configDir are defined as identical functions:
config = app: mkPath configBase app;
configDir = app: mkPath configBase app;
Proposed change
Remove the redundant configDir alias and use config consistently. Update any call sites that reference configDir to use config instead.
Summary
In
nix/modules/user-paths.nix,configandconfigDirare defined as identical functions:Proposed change
Remove the redundant
configDiralias and useconfigconsistently. Update any call sites that referenceconfigDirto useconfiginstead.