- Update app configurations (btop, kitty, ghostty, opencode, lazygit, tmux) to manage individual files instead of entire directories. - Use 'recursive = true' for chromium and elephant configurations to allow multiple modules to contribute to the same directory. - This prevents conflicts when the theme loader tries to add themed config files into directories that were previously managed as monolithic symlinks.
9 lines
131 B
Nix
9 lines
131 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
xdg.configFile."chromium/Default" = {
|
|
source = ./config/Default;
|
|
recursive = true;
|
|
};
|
|
}
|