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

dircolors: remove no-op

This commit is contained in:
jaredmontoya 2025-09-29 11:04:19 +02:00 committed by Austin Horstman
parent 5443ca20ed
commit 462363e248

View file

@ -68,8 +68,7 @@ in
if config.home.preferXdgDirectories then "${config.xdg.configHome}/dir_colors" else "~/.dir_colors";
dircolorsConfig = lib.concatStringsSep "\n" (
[ ]
++ lib.mapAttrsToList formatLine cfg.settings
lib.mapAttrsToList formatLine cfg.settings
++ [ "" ]
++ lib.optional (cfg.extraConfig != "") cfg.extraConfig
);