From 7075371b11cdbac0bde2e0b1dcdb84ba26e492f6 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 30 Oct 2022 20:42:32 -0400 Subject: [PATCH] remove warning about dirty git tree --- hosts/common.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/common.nix b/hosts/common.nix index 5143bce..57451c9 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -65,7 +65,10 @@ in { # Enable features in Nix commands - nix.extraOptions = "experimental-features = nix-command flakes"; + nix.extraOptions = '' + experimental-features = nix-command flakes + warn-dirty = false + ''; # Basic common system packages for all devices environment.systemPackages = with pkgs; [ git vim wget curl ];