I used to do following in home manager configuration:
{ pkgs, ...}: {
programs = {
home-manager.enable = true;
zsh = {
enable = true;
oh-my-zsh = { SOME CFG };
shellAliases = { SOME CFG };
};
};
home.file.".zshrc".text = ''
eval "$(starship init zsh)"
SOME SOURCING, ETC
'';
This worked until today I updated home manager, and it told me this is conflicting since same file is touched in two places.
Searching NixOS Options does not give me an alter option. What should I do with the “text” part?