nixos/*nix*: Add imports as inherently necessary

Albeit not technically necessary because of nixos//module-list.nix
This commit is contained in:
Robert Hensing 2023-07-06 19:48:22 +02:00
parent 0f71c406cf
commit 07de9b62cc
2 changed files with 6 additions and 0 deletions

View File

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

View File

@ -33,6 +33,8 @@ 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.")