From e16c8f19061825f70c068c0d29a4c0c44d828691 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 13 Dec 2023 05:40:43 -0500 Subject: [PATCH] nix: Don't warn when git tree is dirty I run `git status` frequently enough that I already know when the tree is dirty. Additionally, the starship prompt shows the git status anyway. --- modules/nix.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/nix.nix b/modules/nix.nix index 4c032f1..097f73b 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -7,6 +7,7 @@ settings = { experimental-features = [ "nix-command" "flakes" "repl-flake" ]; auto-optimise-store = true; + warn-dirty = false; }; }; }