nixos/nix*: remove not necessary imports

We do not really declare module dependencies anywhere else and it would
a nousance to move any file if many other referenced it without being
necessary. Also most higher level modules depend on most of the lower
level ones.
So removing this because it can only potentially cause weird issues.
This commit is contained in:
Sandro Jäckel 2023-07-07 10:57:51 +02:00
parent 7e9437ceac
commit 88d7aa56e1
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 0 additions and 6 deletions

View File

@ -50,10 +50,6 @@ let
in
{
imports = [
./nix.nix
];
options = {
nix = {
buildMachines = mkOption {

View File

@ -40,8 +40,6 @@ in
{
imports = [
../../config/nix.nix
(mkRenamedOptionModuleWith { sinceRelease = 2205; from = [ "nix" "daemonIONiceLevel" ]; to = [ "nix" "daemonIOSchedPriority" ]; })
(mkRenamedOptionModuleWith { sinceRelease = 2211; from = [ "nix" "readOnlyStore" ]; to = [ "boot" "readOnlyNixStore" ]; })
(mkRemovedOptionModule [ "nix" "daemonNiceLevel" ] "Consider nix.daemonCPUSchedPolicy instead.")