From 8675d1b4726c1b1a7281b69f963ceaee7a2a367e Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 15 Nov 2024 21:03:09 -0500 Subject: [PATCH] Respect user configs --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 9547ed6..4943732 100644 --- a/flake.nix +++ b/flake.nix @@ -134,6 +134,10 @@ ]; config = { + # Push the user's nix.conf into /etc/nix/nix.custom.conf, + # leaving determinate-nixd to manage /etc/nix/nix.conf + environment.etc."nix/nix.conf".target = "nix/nix.custom.conf"; + # Make Nix use the Nix daemon nix.useDaemon = true;