1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/// @file WASM stub for users.cc
/// The WASM evaluator runs with a virtual filesystem via WASI.
/// User/home directory queries return sensible defaults.

#include "lix/libutil/users.hh"
#include "lix/libutil/error.hh"

namespace nix {

std::string getUserName()
{
    return "wasm";
}

std::optional<Path> tryGetHome()
{
    return "/";
}

Path getHome()
{
    return "/";
}

Path getCacheDir()
{
    return "/tmp/nix-cache";
}

Path getConfigDir()
{
    return "/etc/nix";
}

std::vector<Path> getConfigDirs()
{
    return {"/etc/nix"};
}

Path getDataDir()
{
    return "/usr/share/nix";
}

Path getStateDir()
{
    return "/nix/var/nix";
}

Path createNixStateDir()
{
    return "/nix/var/nix";
}

} // namespace nix