-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
64 lines (57 loc) · 1.21 KB
/
lib.rs
File metadata and controls
64 lines (57 loc) · 1.21 KB
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
56
57
58
59
60
61
62
63
64
pub mod base_image;
pub mod image_builder;
pub mod namespaces;
pub mod nixos;
pub mod nixpkgs;
pub mod overlay;
pub mod pid_lookup;
pub mod shared_mount;
pub mod shell;
#[cfg(feature = "embedded_image")]
mod embedded_image;
mod pid_file;
pub(crate) const NIX_VERSION: &str = "2.28.3";
pub(crate) const NIXOS_VERSION: &str = "25.05";
pub(crate) const CACHE_HOME: &str = "/nix/.cache";
pub(crate) const CONFIG_HOME: &str = "/nix/.config";
pub(crate) const USER_ENV_DIR: &str = "/nix/.env";
pub(crate) const BASE_DIR: &str = "/nix/.base";
pub(crate) const ETC_DIR: &str = "/nix/etc";
pub(crate) const SSL_CERTS: &str = "/nix/.base/etc/ssl/certs/ca-bundle.crt";
pub const BASE_PACKAGES: &[&str] = &[
"bash",
"cacert",
"coreutils",
"curl",
"diffutils",
"dig",
"findutils",
"gnugrep",
"gnused",
"gnutar",
"gzip",
"helix",
"htop",
"iproute2",
"iputils",
"jq",
"kitty.terminfo",
"less",
"lsof",
"man",
"nano",
"netcat-openbsd",
"procps",
"sngrep",
"sqlite",
"strace",
"tcpdump",
"util-linux",
"vim",
"xz",
"zsh",
"zsh-prezto",
"zsh-autosuggestions",
"zsh-completions",
"zsh-fast-syntax-highlighting",
];