aboutsummaryrefslogtreecommitdiff
path: root/src/nix
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix')
-rw-r--r--src/nix/daemon.cc2
-rw-r--r--src/nix/develop.cc1
-rw-r--r--src/nix/doctor.cc1
-rw-r--r--src/nix/edit.cc1
-rw-r--r--src/nix/main.cc2
-rw-r--r--src/nix/run.cc1
-rw-r--r--src/nix/upgrade-nix.cc1
7 files changed, 6 insertions, 3 deletions
diff --git a/src/nix/daemon.cc b/src/nix/daemon.cc
index 9d4afb6d9..f1cc1ee9c 100644
--- a/src/nix/daemon.cc
+++ b/src/nix/daemon.cc
@@ -5,7 +5,6 @@
#include "local-store.hh"
#include "remote-store.hh"
#include "remote-store-connection.hh"
-#include "util.hh"
#include "serialise.hh"
#include "archive.hh"
#include "globals.hh"
@@ -14,6 +13,7 @@
#include "legacy.hh"
#include "signals.hh"
#include "daemon.hh"
+#include "unix-domain-socket.hh"
#include <algorithm>
#include <climits>
diff --git a/src/nix/develop.cc b/src/nix/develop.cc
index b5543447e..cd32bb20a 100644
--- a/src/nix/develop.cc
+++ b/src/nix/develop.cc
@@ -8,7 +8,6 @@
#include "derivations.hh"
#include "progress-bar.hh"
#include "run.hh"
-#include "util.hh"
#include <iterator>
#include <memory>
diff --git a/src/nix/doctor.cc b/src/nix/doctor.cc
index da7a1d7a0..4e1cfe8c0 100644
--- a/src/nix/doctor.cc
+++ b/src/nix/doctor.cc
@@ -6,7 +6,6 @@
#include "shared.hh"
#include "store-api.hh"
#include "local-fs-store.hh"
-#include "util.hh"
#include "worker-protocol.hh"
using namespace nix;
diff --git a/src/nix/edit.cc b/src/nix/edit.cc
index 66629fab0..d1741a254 100644
--- a/src/nix/edit.cc
+++ b/src/nix/edit.cc
@@ -4,6 +4,7 @@
#include "attr-path.hh"
#include "progress-bar.hh"
#include "editor-for.hh"
+#include "current-process.hh"
#include <unistd.h>
diff --git a/src/nix/main.cc b/src/nix/main.cc
index 83d697326..5d92cfd76 100644
--- a/src/nix/main.cc
+++ b/src/nix/main.cc
@@ -3,10 +3,12 @@
#include "args/root.hh"
#include "command.hh"
#include "common-args.hh"
+#include "current-process.hh"
#include "eval.hh"
#include "eval-settings.hh"
#include "globals.hh"
#include "legacy.hh"
+#include "namespaces.hh"
#include "shared.hh"
#include "store-api.hh"
#include "filetransfer.hh"
diff --git a/src/nix/run.cc b/src/nix/run.cc
index 94d492ca7..e1e896bb4 100644
--- a/src/nix/run.cc
+++ b/src/nix/run.cc
@@ -10,6 +10,7 @@
#include "progress-bar.hh"
#include "eval.hh"
#include "build/personality.hh"
+#include "current-process.hh"
#if __linux__
#include <sys/mount.h>
diff --git a/src/nix/upgrade-nix.cc b/src/nix/upgrade-nix.cc
index 3e47fc8f0..cbc28fdd7 100644
--- a/src/nix/upgrade-nix.cc
+++ b/src/nix/upgrade-nix.cc
@@ -5,6 +5,7 @@
#include "common-args.hh"
#include "local-fs-store.hh"
#include "logging.hh"
+#include "processes.hh"
#include "profiles.hh"
#include "store-api.hh"
#include "filetransfer.hh"