mirror of
https://github.com/NixOS/nix.git
synced 2025-11-27 12:41:00 +01:00
context: https://github.com/NixOS/nix/pull/13154#discussion_r2081904653
(cherry picked from commit 2dd2142754)
13 lines
249 B
C++
13 lines
249 B
C++
#include "nix/store/store-dir-config.hh"
|
|
#include "nix/util/util.hh"
|
|
#include "nix/store/globals.hh"
|
|
|
|
namespace nix {
|
|
|
|
StoreDirConfig::StoreDirConfig(const Params & params)
|
|
: StoreDirConfigBase(params)
|
|
, MixStoreDirMethods{storeDir_}
|
|
{
|
|
}
|
|
|
|
}
|