feat(topgrade): Install topgrade

This commit is contained in:
punkfairie 2024-11-02 14:48:03 -07:00
parent ec499a85e6
commit 2b9fdf0629
2 changed files with 21 additions and 0 deletions

View file

@ -44,6 +44,7 @@
./ncmpcpp
./syncthing
./tmux
./topgrade
./wget
./xdg
./xsession

20
home/topgrade/default.nix Normal file
View file

@ -0,0 +1,20 @@
{...}: {
programs.topgrade = {
enable = true;
settings = {
misc = {
disable = [
"chezmoi"
];
# Cleanup temporary or old files.
cleanup = true;
};
brew.autoremove = true;
linux.arch_package_manager = "yay";
};
};
}