added pueue.

This commit is contained in:
Gabe Venberg 2024-03-21 22:06:36 -05:00
parent 2ff864d36e
commit 8aa72da8aa
2 changed files with 15 additions and 0 deletions

View file

@ -4,6 +4,12 @@ switch:
bootstrap:
nix run --extra-experimental-features "nix-command flakes" --no-write-lock-file github:nix-community/home-manager/ -- --extra-experimental-features "nix-command flakes" --flake . switch
format:
nix fmt
gc:
home-manager expire-generations -7days
nix store gc
check:
home-manager build --no-out-link --flake .

View file

@ -18,4 +18,13 @@
programs.zoxide.enableNushellIntegration = true;
programs.starship.enableNushellIntegration = true;
programs.carapace.enableNushellIntegration = true;
services.pueue = {
enable = true;
settings = {
daemon = {
default_parallel_tasks = 5;
};
};
};
}