punkfairie
5bffc52df8
Switch to nixfmt as when I was adding treesitter injected lang hints, Alejandra was not formatting those comments in a way I liked. Turns out I like the nixfmt style in general better.
21 lines
302 B
Nix
21 lines
302 B
Nix
{ ... }:
|
|
{
|
|
programs.topgrade = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
misc = {
|
|
disable = [
|
|
"chezmoi"
|
|
];
|
|
|
|
# Cleanup temporary or old files.
|
|
cleanup = true;
|
|
};
|
|
|
|
brew.autoremove = true;
|
|
|
|
linux.arch_package_manager = "yay";
|
|
};
|
|
};
|
|
}
|