2024-04-04 23:07:44 +00:00
|
|
|
{
|
|
|
|
pkgs ? import <nixpkgs> { },
|
2024-06-07 08:35:26 +00:00
|
|
|
nix2container,
|
2024-04-04 23:07:44 +00:00
|
|
|
lib ? pkgs.lib,
|
2024-06-06 18:35:03 +00:00
|
|
|
name ? "lix",
|
2024-04-04 23:07:44 +00:00
|
|
|
tag ? "latest",
|
|
|
|
bundleNixpkgs ? true,
|
|
|
|
channelName ? "nixpkgs",
|
|
|
|
channelURL ? "https://nixos.org/channels/nixpkgs-unstable",
|
|
|
|
extraPkgs ? [ ],
|
|
|
|
maxLayers ? 100,
|
|
|
|
nixConf ? { },
|
|
|
|
flake-registry ? null,
|
2021-10-30 22:22:35 +00:00
|
|
|
}:
|
|
|
|
let
|
2024-06-07 08:35:26 +00:00
|
|
|
layerContents = with pkgs; [
|
|
|
|
# pulls in glibc and openssl, about 60MB
|
|
|
|
{ contents = [ coreutils-full ]; }
|
|
|
|
# some stuff that is low in the closure graph and small ish, mostly to make
|
|
|
|
# incremental lix updates cheaper
|
|
|
|
{
|
|
|
|
contents = [
|
|
|
|
curl
|
|
|
|
libxml2
|
|
|
|
sqlite
|
|
|
|
];
|
|
|
|
}
|
|
|
|
# 50MB of git
|
|
|
|
{ contents = [ gitMinimal ]; }
|
|
|
|
# 144MB of nixpkgs
|
|
|
|
{
|
|
|
|
contents = [ channel ];
|
|
|
|
inProfile = false;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
# These packages are left to be auto layered by nix2container, since it is
|
|
|
|
# less critical that they get layered sensibly and they tend to not be deps
|
|
|
|
# of anything in particular
|
|
|
|
autoLayered = with pkgs; [
|
|
|
|
bashInteractive
|
|
|
|
gnutar
|
|
|
|
gzip
|
|
|
|
gnugrep
|
|
|
|
which
|
|
|
|
less
|
|
|
|
wget
|
|
|
|
man
|
|
|
|
cacert.out
|
|
|
|
findutils
|
|
|
|
iana-etc
|
|
|
|
openssh
|
|
|
|
nix
|
|
|
|
];
|
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
defaultPkgs =
|
2024-06-07 08:35:26 +00:00
|
|
|
lib.lists.flatten (
|
|
|
|
map (x: if !(x ? inProfile) || x.inProfile then x.contents else [ ]) layerContents
|
|
|
|
)
|
|
|
|
++ autoLayered
|
2024-04-04 23:07:44 +00:00
|
|
|
++ extraPkgs;
|
|
|
|
|
|
|
|
users =
|
|
|
|
{
|
|
|
|
|
|
|
|
root = {
|
|
|
|
uid = 0;
|
|
|
|
shell = "${pkgs.bashInteractive}/bin/bash";
|
|
|
|
home = "/root";
|
|
|
|
gid = 0;
|
|
|
|
groups = [ "root" ];
|
|
|
|
description = "System administrator";
|
|
|
|
};
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
nobody = {
|
|
|
|
uid = 65534;
|
|
|
|
shell = "${pkgs.shadow}/bin/nologin";
|
|
|
|
home = "/var/empty";
|
|
|
|
gid = 65534;
|
|
|
|
groups = [ "nobody" ];
|
|
|
|
description = "Unprivileged account (don't use!)";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
// lib.listToAttrs (
|
|
|
|
map (n: {
|
|
|
|
name = "nixbld${toString n}";
|
|
|
|
value = {
|
|
|
|
uid = 30000 + n;
|
|
|
|
gid = 30000;
|
|
|
|
groups = [ "nixbld" ];
|
|
|
|
description = "Nix build user ${toString n}";
|
|
|
|
};
|
|
|
|
}) (lib.lists.range 1 32)
|
|
|
|
);
|
2021-10-30 22:22:35 +00:00
|
|
|
|
|
|
|
groups = {
|
|
|
|
root.gid = 0;
|
|
|
|
nixbld.gid = 30000;
|
2022-11-29 10:01:46 +00:00
|
|
|
nobody.gid = 65534;
|
2021-10-30 22:22:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
userToPasswd = (
|
|
|
|
k:
|
2024-04-04 23:07:44 +00:00
|
|
|
{
|
|
|
|
uid,
|
|
|
|
gid ? 65534,
|
|
|
|
home ? "/var/empty",
|
|
|
|
description ? "",
|
|
|
|
shell ? "/bin/false",
|
|
|
|
groups ? [ ],
|
|
|
|
}:
|
|
|
|
"${k}:x:${toString uid}:${toString gid}:${description}:${home}:${shell}"
|
2021-10-30 22:22:35 +00:00
|
|
|
);
|
2024-04-04 23:07:44 +00:00
|
|
|
passwdContents = (lib.concatStringsSep "\n" (lib.attrValues (lib.mapAttrs userToPasswd users)));
|
2021-10-30 22:22:35 +00:00
|
|
|
|
|
|
|
userToShadow = k: { ... }: "${k}:!:1::::::";
|
2024-04-04 23:07:44 +00:00
|
|
|
shadowContents = (lib.concatStringsSep "\n" (lib.attrValues (lib.mapAttrs userToShadow users)));
|
2021-10-30 22:22:35 +00:00
|
|
|
|
|
|
|
# Map groups to members
|
|
|
|
# {
|
|
|
|
# group = [ "user1" "user2" ];
|
|
|
|
# }
|
|
|
|
groupMemberMap = (
|
|
|
|
let
|
|
|
|
# Create a flat list of user/group mappings
|
|
|
|
mappings = (
|
2024-04-04 23:07:44 +00:00
|
|
|
builtins.foldl' (
|
|
|
|
acc: user:
|
|
|
|
let
|
|
|
|
groups = users.${user}.groups or [ ];
|
|
|
|
in
|
|
|
|
acc ++ map (group: { inherit user group; }) groups
|
|
|
|
) [ ] (lib.attrNames users)
|
2021-10-30 22:22:35 +00:00
|
|
|
);
|
|
|
|
in
|
2024-04-04 23:07:44 +00:00
|
|
|
(builtins.foldl' (
|
|
|
|
acc: v: acc // { ${v.group} = acc.${v.group} or [ ] ++ [ v.user ]; }
|
|
|
|
) { } mappings)
|
2021-10-30 22:22:35 +00:00
|
|
|
);
|
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
groupToGroup =
|
|
|
|
k:
|
|
|
|
{ gid }:
|
2021-10-30 22:22:35 +00:00
|
|
|
let
|
|
|
|
members = groupMemberMap.${k} or [ ];
|
|
|
|
in
|
|
|
|
"${k}:x:${toString gid}:${lib.concatStringsSep "," members}";
|
2024-04-04 23:07:44 +00:00
|
|
|
groupContents = (lib.concatStringsSep "\n" (lib.attrValues (lib.mapAttrs groupToGroup groups)));
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2022-07-28 07:36:39 +00:00
|
|
|
defaultNixConf = {
|
2021-10-30 22:22:35 +00:00
|
|
|
sandbox = "false";
|
|
|
|
build-users-group = "nixbld";
|
2022-07-28 07:36:39 +00:00
|
|
|
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
|
2021-10-30 22:22:35 +00:00
|
|
|
};
|
2022-07-28 07:36:39 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
nixConfContents =
|
|
|
|
(lib.concatStringsSep "\n" (
|
|
|
|
lib.mapAttrsFlatten (
|
|
|
|
n: v:
|
|
|
|
let
|
|
|
|
vStr = if builtins.isList v then lib.concatStringsSep " " v else v;
|
|
|
|
in
|
|
|
|
"${n} = ${vStr}"
|
|
|
|
) (defaultNixConf // nixConf)
|
|
|
|
))
|
|
|
|
+ "\n";
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-06-07 08:35:26 +00:00
|
|
|
nixpkgs = pkgs.path;
|
|
|
|
channel = pkgs.runCommand "channel-nixpkgs" { } ''
|
|
|
|
mkdir $out
|
|
|
|
${lib.optionalString bundleNixpkgs ''
|
|
|
|
ln -s ${nixpkgs} $out/nixpkgs
|
|
|
|
echo "[]" > $out/manifest.nix
|
|
|
|
''}
|
|
|
|
'';
|
|
|
|
|
2021-10-30 22:22:35 +00:00
|
|
|
baseSystem =
|
|
|
|
let
|
2021-11-16 15:32:26 +00:00
|
|
|
rootEnv = pkgs.buildPackages.buildEnv {
|
2021-10-30 22:22:35 +00:00
|
|
|
name = "root-profile-env";
|
|
|
|
paths = defaultPkgs;
|
|
|
|
};
|
2021-12-16 10:29:05 +00:00
|
|
|
manifest = pkgs.buildPackages.runCommand "manifest.nix" { } ''
|
|
|
|
cat > $out <<EOF
|
2021-10-30 22:22:35 +00:00
|
|
|
[
|
2024-04-04 23:07:44 +00:00
|
|
|
${lib.concatStringsSep "\n" (
|
|
|
|
builtins.map (
|
|
|
|
drv:
|
|
|
|
let
|
|
|
|
outputs = drv.outputsToInstall or [ "out" ];
|
|
|
|
in
|
|
|
|
''
|
|
|
|
{
|
|
|
|
${
|
|
|
|
lib.concatStringsSep "\n" (
|
|
|
|
builtins.map (output: ''
|
|
|
|
${output} = { outPath = "${lib.getOutput output drv}"; };
|
|
|
|
'') outputs
|
|
|
|
)
|
|
|
|
}
|
|
|
|
outputs = [ ${lib.concatStringsSep " " (builtins.map (x: "\"${x}\"") outputs)} ];
|
|
|
|
name = "${drv.name}";
|
|
|
|
outPath = "${drv}";
|
|
|
|
system = "${drv.system}";
|
|
|
|
type = "derivation";
|
|
|
|
meta = { };
|
|
|
|
}
|
|
|
|
''
|
|
|
|
) defaultPkgs
|
|
|
|
)}
|
2021-10-30 22:22:35 +00:00
|
|
|
]
|
|
|
|
EOF
|
|
|
|
'';
|
2021-12-16 10:29:05 +00:00
|
|
|
profile = pkgs.buildPackages.runCommand "user-environment" { } ''
|
|
|
|
mkdir $out
|
|
|
|
cp -a ${rootEnv}/* $out/
|
2024-06-07 08:35:26 +00:00
|
|
|
ln -sf ${manifest} $out/manifest.nix
|
2021-12-16 10:29:05 +00:00
|
|
|
'';
|
2024-04-04 23:07:44 +00:00
|
|
|
flake-registry-path =
|
|
|
|
if (flake-registry == null) then
|
|
|
|
null
|
|
|
|
else if (builtins.readFileType (toString flake-registry)) == "directory" then
|
|
|
|
"${flake-registry}/flake-registry.json"
|
|
|
|
else
|
|
|
|
flake-registry;
|
2021-10-30 22:22:35 +00:00
|
|
|
in
|
2021-11-16 15:32:26 +00:00
|
|
|
pkgs.runCommand "base-system"
|
2021-10-30 22:22:35 +00:00
|
|
|
{
|
2024-04-04 23:07:44 +00:00
|
|
|
inherit
|
|
|
|
passwdContents
|
|
|
|
groupContents
|
|
|
|
shadowContents
|
|
|
|
nixConfContents
|
|
|
|
;
|
2021-10-30 22:22:35 +00:00
|
|
|
passAsFile = [
|
|
|
|
"passwdContents"
|
|
|
|
"groupContents"
|
|
|
|
"shadowContents"
|
|
|
|
"nixConfContents"
|
|
|
|
];
|
|
|
|
allowSubstitutes = false;
|
|
|
|
preferLocalBuild = true;
|
2024-04-04 23:07:44 +00:00
|
|
|
}
|
|
|
|
(
|
|
|
|
''
|
|
|
|
env
|
|
|
|
set -x
|
|
|
|
mkdir -p $out/etc
|
2021-12-21 20:17:29 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir -p $out/etc/ssl/certs
|
|
|
|
ln -s /nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt $out/etc/ssl/certs
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
cat $passwdContentsPath > $out/etc/passwd
|
|
|
|
echo "" >> $out/etc/passwd
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
cat $groupContentsPath > $out/etc/group
|
|
|
|
echo "" >> $out/etc/group
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
cat $shadowContentsPath > $out/etc/shadow
|
|
|
|
echo "" >> $out/etc/shadow
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir -p $out/usr
|
|
|
|
ln -s /nix/var/nix/profiles/share $out/usr/
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir -p $out/nix/var/nix/gcroots
|
2024-06-07 08:35:26 +00:00
|
|
|
ln -s /nix/var/nix/profiles $out/nix/var/nix/gcroots/profiles
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir $out/tmp
|
2022-01-15 09:20:18 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir -p $out/var/tmp
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir -p $out/etc/nix
|
|
|
|
cat $nixConfContentsPath > $out/etc/nix/nix.conf
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir -p $out/root
|
|
|
|
mkdir -p $out/nix/var/nix/profiles/per-user/root
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
ln -s ${profile} $out/nix/var/nix/profiles/default-1-link
|
2024-06-07 08:35:26 +00:00
|
|
|
ln -s /nix/var/nix/profiles/default-1-link $out/nix/var/nix/profiles/default
|
2024-04-04 23:07:44 +00:00
|
|
|
ln -s /nix/var/nix/profiles/default $out/root/.nix-profile
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
ln -s ${channel} $out/nix/var/nix/profiles/per-user/root/channels-1-link
|
2024-06-07 08:35:26 +00:00
|
|
|
ln -s /nix/var/nix/profiles/per-user/root/channels-1-link $out/nix/var/nix/profiles/per-user/root/channels
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir -p $out/root/.nix-defexpr
|
2024-06-07 08:35:26 +00:00
|
|
|
ln -s /nix/var/nix/profiles/per-user/root/channels $out/root/.nix-defexpr/channels
|
2024-04-04 23:07:44 +00:00
|
|
|
echo "${channelURL} ${channelName}" > $out/root/.nix-channels
|
2023-03-22 19:55:02 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
mkdir -p $out/bin $out/usr/bin
|
|
|
|
ln -s ${pkgs.coreutils}/bin/env $out/usr/bin/env
|
|
|
|
ln -s ${pkgs.bashInteractive}/bin/bash $out/bin/sh
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
''
|
|
|
|
+ (lib.optionalString (flake-registry-path != null) ''
|
|
|
|
nixCacheDir="/root/.cache/nix"
|
|
|
|
mkdir -p $out$nixCacheDir
|
|
|
|
globalFlakeRegistryPath="$nixCacheDir/flake-registry.json"
|
|
|
|
ln -s ${flake-registry-path} $out$globalFlakeRegistryPath
|
|
|
|
mkdir -p $out/nix/var/nix/gcroots/auto
|
|
|
|
rootName=$(${pkgs.nix}/bin/nix --extra-experimental-features nix-command hash file --type sha1 --base32 <(echo -n $globalFlakeRegistryPath))
|
|
|
|
ln -s $globalFlakeRegistryPath $out/nix/var/nix/gcroots/auto/$rootName
|
|
|
|
'')
|
|
|
|
);
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-06-07 08:35:26 +00:00
|
|
|
layers = builtins.foldl' (
|
|
|
|
layersList: el:
|
|
|
|
let
|
|
|
|
layer = nix2container.buildLayer {
|
|
|
|
deps = el.contents;
|
|
|
|
layers = layersList;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
layersList ++ [ layer ]
|
|
|
|
) [ ] layerContents;
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-06-07 08:35:26 +00:00
|
|
|
image = nix2container.buildImage {
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-06-07 08:35:26 +00:00
|
|
|
inherit name tag maxLayers;
|
2021-10-30 22:22:35 +00:00
|
|
|
|
2024-06-07 08:35:26 +00:00
|
|
|
inherit layers;
|
|
|
|
|
|
|
|
copyToRoot = [ baseSystem ];
|
|
|
|
|
|
|
|
initializeNixDatabase = true;
|
|
|
|
|
|
|
|
perms = [
|
|
|
|
{
|
|
|
|
path = baseSystem;
|
|
|
|
regex = "(/var)?/tmp";
|
|
|
|
mode = "1777";
|
|
|
|
}
|
2021-10-30 22:22:35 +00:00
|
|
|
];
|
2024-06-07 08:35:26 +00:00
|
|
|
|
|
|
|
config = {
|
|
|
|
Cmd = [ "/root/.nix-profile/bin/bash" ];
|
|
|
|
Env = [
|
|
|
|
"USER=root"
|
|
|
|
"PATH=${
|
|
|
|
lib.concatStringsSep ":" [
|
|
|
|
"/root/.nix-profile/bin"
|
|
|
|
"/nix/var/nix/profiles/default/bin"
|
|
|
|
"/nix/var/nix/profiles/default/sbin"
|
|
|
|
]
|
|
|
|
}"
|
|
|
|
"MANPATH=${
|
|
|
|
lib.concatStringsSep ":" [
|
|
|
|
"/root/.nix-profile/share/man"
|
|
|
|
"/nix/var/nix/profiles/default/share/man"
|
|
|
|
]
|
|
|
|
}"
|
|
|
|
"SSL_CERT_FILE=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt"
|
|
|
|
"GIT_SSL_CAINFO=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt"
|
|
|
|
"NIX_SSL_CERT_FILE=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt"
|
|
|
|
"NIX_PATH=/nix/var/nix/profiles/per-user/root/channels:/root/.nix-defexpr/channels"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
|
|
|
image
|
|
|
|
// {
|
|
|
|
# We don't ship the tarball as the default output because it is a strange thing to want imo
|
|
|
|
tarball =
|
|
|
|
pkgs.buildPackages.runCommand "docker-image-tarball-${pkgs.nix.version}"
|
|
|
|
{
|
|
|
|
nativeBuildInputs = [ pkgs.buildPackages.bubblewrap ];
|
|
|
|
meta.description = "Docker image tarball with Lix for ${pkgs.system}";
|
|
|
|
}
|
|
|
|
''
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
image=$out/image.tar
|
|
|
|
# bwrap for foolish temp dir selection code that forces /var/tmp:
|
|
|
|
# https://github.com/containers/skopeo.git/blob/60ee543f7f7c242f46cc3a7541d9ac8ab1c89168/vendor/github.com/containers/image/v5/internal/tmpdir/tmpdir.go#L15-L18
|
|
|
|
mkdir -p $TMPDIR/fake-var/tmp
|
|
|
|
args=(--unshare-user --bind "$TMPDIR/fake-var" /var)
|
|
|
|
for dir in /*; do
|
|
|
|
args+=(--dev-bind "/$dir" "/$dir")
|
|
|
|
done
|
|
|
|
bwrap ''${args[@]} -- ${lib.getExe image.copyTo} docker-archive:$image
|
|
|
|
gzip $image
|
|
|
|
echo "file binary-dist $image" >> $out/nix-support/hydra-build-products
|
|
|
|
'';
|
|
|
|
meta = image.meta // {
|
|
|
|
description = "Docker image for Lix. This is built with nix2container; see that project's README for details";
|
|
|
|
longDescription = ''
|
|
|
|
Docker image for Lix, built with nix2container.
|
|
|
|
To copy it to your docker daemon, nix run .#dockerImage.copyToDockerDaemon
|
|
|
|
To copy it to podman, nix run .#dockerImage.copyTo containers-storage:lix
|
|
|
|
'';
|
2021-10-30 22:22:35 +00:00
|
|
|
};
|
|
|
|
}
|