Prevent nix.conf in $HOME (cachix being offender)

Caches are managed globally
This commit is contained in:
Sridhar Ratnakumar 2024-08-04 13:55:35 -04:00
parent e6e955cce8
commit 78e101f434
No known key found for this signature in database

View file

@ -1,4 +1,8 @@
{
# Garbage collect automatically every week
nix.gc.automatic = true;
# Nix configuration is managed globally by nix-darwin.
# Prevent $HOME nix.conf from disrespecting it.
home.file."~/.config/nix/nix.conf".text = "";
}