added pueue.
This commit is contained in:
parent
2ff864d36e
commit
8aa72da8aa
|
@ -4,6 +4,12 @@ switch:
|
||||||
bootstrap:
|
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
|
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:
|
gc:
|
||||||
home-manager expire-generations -7days
|
home-manager expire-generations -7days
|
||||||
nix store gc
|
nix store gc
|
||||||
|
|
||||||
|
check:
|
||||||
|
home-manager build --no-out-link --flake .
|
||||||
|
|
|
@ -18,4 +18,13 @@
|
||||||
programs.zoxide.enableNushellIntegration = true;
|
programs.zoxide.enableNushellIntegration = true;
|
||||||
programs.starship.enableNushellIntegration = true;
|
programs.starship.enableNushellIntegration = true;
|
||||||
programs.carapace.enableNushellIntegration = true;
|
programs.carapace.enableNushellIntegration = true;
|
||||||
|
|
||||||
|
services.pueue = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
daemon = {
|
||||||
|
default_parallel_tasks = 5;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue