mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 16:08:45 +01:00
e16c8f1906
I run `git status` frequently enough that I already know when the tree is dirty. Additionally, the starship prompt shows the git status anyway.
14 lines
221 B
Nix
14 lines
221 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
nix = {
|
|
package = pkgs.nixFlakes;
|
|
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
|
auto-optimise-store = true;
|
|
warn-dirty = false;
|
|
};
|
|
};
|
|
}
|