add topgrade
This commit is contained in:
parent
17c641196b
commit
c7f82da5cc
2 changed files with 40 additions and 0 deletions
|
|
@ -10,6 +10,7 @@
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./newsboat.nix
|
./newsboat.nix
|
||||||
./taskwarrior.nix
|
./taskwarrior.nix
|
||||||
|
./topgrade.nix
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
./vifm.nix
|
./vifm.nix
|
||||||
];
|
];
|
||||||
|
|
|
||||||
39
home/topgrade.nix
Normal file
39
home/topgrade.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.topgrade = {
|
||||||
|
enable = true;
|
||||||
|
#no_retry = true;
|
||||||
|
#skip_notify = true;
|
||||||
|
settings = {
|
||||||
|
assume_yes = true;
|
||||||
|
disable = [
|
||||||
|
"emacs"
|
||||||
|
"atom"
|
||||||
|
"flatpak"
|
||||||
|
"home_manager"
|
||||||
|
"pip3"
|
||||||
|
"ruby_gems"
|
||||||
|
"snap"
|
||||||
|
"shell"
|
||||||
|
"stack"
|
||||||
|
"tmux"
|
||||||
|
];
|
||||||
|
set_title = false;
|
||||||
|
cleanup = true;
|
||||||
|
commands = {
|
||||||
|
"Run garbage collection on Nix store" = "nix-collect-garbage";
|
||||||
|
};
|
||||||
|
git = {
|
||||||
|
max_concurrency = 5;
|
||||||
|
repos = [
|
||||||
|
"~/.dotfiles"
|
||||||
|
"~/bin"
|
||||||
|
"~/nixos"
|
||||||
|
"~/src/Systems/ansible"
|
||||||
|
"~/src/WWW/sites/donaldharper.com"
|
||||||
|
"~/src/WWW/sites/duckland.org"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue