add support for another mountpoint than /mnt

This commit is contained in:
lassulus 2023-01-24 15:57:17 +01:00 committed by lassulus
parent d7e178126f
commit af2da574be
6 changed files with 40 additions and 19 deletions

View File

@ -3,10 +3,12 @@
, flake ? null , flake ? null
, flakeAttr ? null , flakeAttr ? null
, diskoFile ? null , diskoFile ? null
, rootMountPoint ? "/mnt"
, noDeps ? false , noDeps ? false
, ... }@args: , ... }@args:
let let
disko = import ./. { disko = import ./. {
inherit rootMountPoint;
lib = pkgs.lib; lib = pkgs.lib;
}; };

View File

@ -1,6 +1,8 @@
{ lib ? import <nixpkgs/lib> }: { lib ? import <nixpkgs/lib>
, rootMountPoint ? "/mnt"
}:
let let
types = import ./types.nix { inherit lib; }; types = import ./types.nix { inherit lib rootMountPoint; };
eval = cfg: lib.evalModules { eval = cfg: lib.evalModules {
modules = lib.singleton { modules = lib.singleton {
# _file = toString input; # _file = toString input;

8
disko
View File

@ -25,6 +25,8 @@ Options:
pass value to nix-build. can be used to set disk-names for example pass value to nix-build. can be used to set disk-names for example
* --argstr name value * --argstr name value
pass value to nix-build as string pass value to nix-build as string
* --root-mountpoint /mnt
where to mount the device tree
* --dry-run * --dry-run
just show the path to the script instead of running it just show the path to the script instead of running it
* --debug * --debug
@ -54,7 +56,7 @@ while [[ $# -gt 0 ]]; do
shift shift
;; ;;
-f | --flake) -f | --flake)
flake="$2" flake=$2
shift shift
;; ;;
--argstr | --arg) --argstr | --arg)
@ -69,6 +71,10 @@ while [[ $# -gt 0 ]]; do
--dry-run) --dry-run)
dry_run=y dry_run=y
;; ;;
--root-mountpoint)
nix_args+=(--arg rootMountPoint "$2")
shift
;;
--no-deps) --no-deps)
nix_args+=(--arg noDeps true) nix_args+=(--arg noDeps true)
;; ;;

View File

@ -1,7 +1,10 @@
{ lib, nixosOptionsDoc, runCommand, fetchurl, pandoc }: { lib, nixosOptionsDoc, runCommand, fetchurl, pandoc }:
let let
types = import ./types.nix { inherit lib; }; types = import ./types.nix {
inherit lib;
rootMountPoint = "/mnt";
};
eval = lib.evalModules { eval = lib.evalModules {
modules = [ modules = [
{ {

View File

@ -1,6 +1,9 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
let let
types = import ./types.nix { inherit lib; }; types = import ./types.nix {
inherit lib;
rootMountPoint = config.disko.rootMountPoint;
};
cfg = config.disko; cfg = config.disko;
in { in {
options.disko = { options.disko = {
@ -9,6 +12,11 @@ in {
default = {}; default = {};
description = "The devices to set up"; description = "The devices to set up";
}; };
rootMountPoint = lib.mkOption {
type = lib.types.str;
default = "/mnt";
description = "Where the device tree should be mounted by the mountScript";
};
enableConfig = lib.mkOption { enableConfig = lib.mkOption {
description = '' description = ''
configure nixos with the specified devices configure nixos with the specified devices

View File

@ -1,4 +1,4 @@
{ lib }: { lib, rootMountPoint }:
with lib; with lib;
with builtins; with builtins;
@ -223,7 +223,7 @@ rec {
*/ */
zapCreateMount = devices: '' zapCreateMount = devices: ''
set -efux set -efux
umount -Rv /mnt || : umount -Rv "${rootMountPoint}" mnt || :
for dev in ${toString (lib.catAttrs "device" (lib.attrValues devices.disk))}; do for dev in ${toString (lib.catAttrs "device" (lib.attrValues devices.disk))}; do
${./disk-deactivate}/disk-deactivate "$dev" | bash -x ${./disk-deactivate}/disk-deactivate "$dev" | bash -x
@ -354,8 +354,8 @@ rec {
inherit config options; inherit config options;
default = {}: { default = {}: {
fs.${config.mountpoint} = '' fs.${config.mountpoint} = ''
if ! findmnt ${config.fsType} "/mnt${config.mountpoint}" > /dev/null 2>&1; then if ! findmnt ${config.fsType} "${rootMountPoint}${config.mountpoint}" > /dev/null 2>&1; then
mount -t ${config.fsType} ${config.device} "/mnt${config.mountpoint}" \ mount -t ${config.fsType} ${config.device} "${rootMountPoint}${config.mountpoint}" \
${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \ ${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \
-o X-mount.mkdir -o X-mount.mkdir
fi fi
@ -434,8 +434,8 @@ rec {
in { in {
fs = subvolMounts.fs // optionalAttrs (!isNull config.mountpoint) { fs = subvolMounts.fs // optionalAttrs (!isNull config.mountpoint) {
${config.mountpoint} = '' ${config.mountpoint} = ''
if ! findmnt ${dev} "/mnt${config.mountpoint}" > /dev/null 2>&1; then if ! findmnt ${dev} "${rootMountPoint}${config.mountpoint}" > /dev/null 2>&1; then
mount ${dev} "/mnt${config.mountpoint}" \ mount ${dev} "${rootMountPoint}${config.mountpoint}" \
${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \ ${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \
-o X-mount.mkdir -o X-mount.mkdir
fi fi
@ -524,8 +524,8 @@ rec {
else null; else null;
in optionalAttrs (!isNull mountpoint) { in optionalAttrs (!isNull mountpoint) {
fs.${mountpoint} = '' fs.${mountpoint} = ''
if ! findmnt ${dev} "/mnt${mountpoint}" > /dev/null 2>&1; then if ! findmnt ${dev} "${rootMountPoint}${mountpoint}" > /dev/null 2>&1; then
mount ${dev} "/mnt${mountpoint}" \ mount ${dev} "${rootMountPoint}${mountpoint}" \
${concatMapStringsSep " " (opt: "-o ${opt}") (config.mountOptions ++ [ "subvol=${config.name}" ])} \ ${concatMapStringsSep " " (opt: "-o ${opt}") (config.mountOptions ++ [ "subvol=${config.name}" ])} \
-o X-mount.mkdir -o X-mount.mkdir
fi fi
@ -603,8 +603,8 @@ rec {
inherit config options; inherit config options;
default = {dev}: { default = {dev}: {
fs.${config.mountpoint} = '' fs.${config.mountpoint} = ''
if ! findmnt ${dev} "/mnt${config.mountpoint}" > /dev/null 2>&1; then if ! findmnt ${dev} "${rootMountPoint}${config.mountpoint}" > /dev/null 2>&1; then
mount ${dev} "/mnt${config.mountpoint}" \ mount ${dev} "${rootMountPoint}${config.mountpoint}" \
-t "${config.format}" \ -t "${config.format}" \
${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \ ${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \
-o X-mount.mkdir -o X-mount.mkdir
@ -1169,8 +1169,8 @@ rec {
''; '';
fs = datasetMounts.fs // optionalAttrs (!isNull config.mountpoint) { fs = datasetMounts.fs // optionalAttrs (!isNull config.mountpoint) {
${config.mountpoint} = '' ${config.mountpoint} = ''
if ! findmnt ${config.name} "/mnt${config.mountpoint}" > /dev/null 2>&1; then if ! findmnt ${config.name} "${rootMountPoint}${config.mountpoint}" > /dev/null 2>&1; then
mount ${config.name} "/mnt${config.mountpoint}" \ mount ${config.name} "${rootMountPoint}${config.mountpoint}" \
${optionalString ((config.options.mountpoint or "") != "legacy") "-o zfsutil"} \ ${optionalString ((config.options.mountpoint or "") != "legacy") "-o zfsutil"} \
${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \ ${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \
-o X-mount.mkdir \ -o X-mount.mkdir \
@ -1273,8 +1273,8 @@ rec {
default = {zpool}: default = {zpool}:
optionalAttrs (config.zfs_type == "volume" && !isNull config.content) (config.content._mount {dev = "/dev/zvol/${zpool}/${config.name}";}) // optionalAttrs (config.zfs_type == "volume" && !isNull config.content) (config.content._mount {dev = "/dev/zvol/${zpool}/${config.name}";}) //
optionalAttrs (config.zfs_type == "filesystem" && config.options.mountpoint or "" != "none") { fs.${config.mountpoint} = '' optionalAttrs (config.zfs_type == "filesystem" && config.options.mountpoint or "" != "none") { fs.${config.mountpoint} = ''
if ! findmnt ${zpool}/${config.name} "/mnt${config.mountpoint}" > /dev/null 2>&1; then if ! findmnt ${zpool}/${config.name} "${rootMountPoint}${config.mountpoint}" > /dev/null 2>&1; then
mount ${zpool}/${config.name} "/mnt${config.mountpoint}" \ mount ${zpool}/${config.name} "${rootMountPoint}${config.mountpoint}" \
-o X-mount.mkdir \ -o X-mount.mkdir \
${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \ ${concatMapStringsSep " " (opt: "-o ${opt}") config.mountOptions} \
${optionalString ((config.options.mountpoint or "") != "legacy") "-o zfsutil"} \ ${optionalString ((config.options.mountpoint or "") != "legacy") "-o zfsutil"} \