From 4408a88abe800ed502593ce21de737bf1edeaee5 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Sat, 15 Oct 2022 19:16:23 +0200 Subject: [PATCH] util-watch-doom + more gc (I don't know which is the right gc) --- shell.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 9c1cafbe..88802ad9 100644 --- a/shell.nix +++ b/shell.nix @@ -19,6 +19,11 @@ pkgs.devshell.mkShell { help = "Show running flatpak operations"; command = "watch -n 0.5 -d procs flatpak"; } + { + name = "util-watch-doom"; + help = "Show running doom operations"; + command = "watch -n 0.5 -d procs doom"; + } { name = "util-pkgs-sys"; help = "List currently installed system packages"; @@ -61,7 +66,7 @@ pkgs.devshell.mkShell { { name = "store-gc"; help = "Run NixOS garbage collector"; - command = "nix-store --gc"; + command = "nix-store --gc && sudo nix-collect-garbage -d"; } { name = "store-optimise";