2014-04-14 14:26:48 +00:00
|
|
|
|
{ config, lib, pkgs, utils, ... }:
|
2009-10-12 16:36:19 +00:00
|
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
|
with lib;
|
2012-10-12 21:32:36 +00:00
|
|
|
|
with utils;
|
2006-12-21 14:22:40 +00:00
|
|
|
|
|
2012-03-15 13:54:23 +00:00
|
|
|
|
let
|
|
|
|
|
|
2012-11-02 17:02:12 +00:00
|
|
|
|
fileSystems = attrValues config.fileSystems;
|
|
|
|
|
|
2015-09-24 16:13:14 +00:00
|
|
|
|
prioOption = prio: optionalString (prio != null) " pri=${toString prio}";
|
2013-05-13 21:42:55 +00:00
|
|
|
|
|
2014-07-30 11:15:29 +00:00
|
|
|
|
fileSystemOpts = { name, config, ... }: {
|
2012-11-02 17:02:12 +00:00
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
|
|
mountPoint = mkOption {
|
|
|
|
|
example = "/mnt/usb";
|
2013-10-30 10:02:04 +00:00
|
|
|
|
type = types.str;
|
2012-11-02 17:02:12 +00:00
|
|
|
|
description = "Location of the mounted the file system.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
device = mkOption {
|
|
|
|
|
default = null;
|
|
|
|
|
example = "/dev/sda";
|
2015-08-17 17:52:45 +00:00
|
|
|
|
type = types.nullOr types.str;
|
2012-11-02 17:02:12 +00:00
|
|
|
|
description = "Location of the device.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
label = mkOption {
|
|
|
|
|
default = null;
|
|
|
|
|
example = "root-partition";
|
2015-08-17 17:52:45 +00:00
|
|
|
|
type = types.nullOr types.str;
|
2012-11-02 17:02:12 +00:00
|
|
|
|
description = "Label of the device (if any).";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fsType = mkOption {
|
|
|
|
|
default = "auto";
|
|
|
|
|
example = "ext3";
|
2013-10-30 10:02:04 +00:00
|
|
|
|
type = types.str;
|
2012-11-02 17:02:12 +00:00
|
|
|
|
description = "Type of the file system.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
options = mkOption {
|
2015-10-21 17:37:14 +00:00
|
|
|
|
default = [ "defaults" ];
|
|
|
|
|
example = [ "data=journal" ];
|
2012-11-02 17:02:12 +00:00
|
|
|
|
description = "Options used to mount the file system.";
|
2015-10-21 17:37:14 +00:00
|
|
|
|
} // (if versionAtLeast lib.nixpkgsVersion "16.09" then {
|
|
|
|
|
type = types.listOf types.str;
|
|
|
|
|
} else {
|
|
|
|
|
type = types.either types.commas (types.listOf types.str);
|
|
|
|
|
apply = x: if isList x then x else lib.strings.splitString "," (builtins.trace "warning: passing a comma-separated string for filesystem options is deprecated; use a list of strings instead. This will become a hard error in 16.09." x);
|
|
|
|
|
});
|
2012-11-02 17:02:12 +00:00
|
|
|
|
|
|
|
|
|
autoFormat = mkOption {
|
|
|
|
|
default = false;
|
|
|
|
|
type = types.bool;
|
|
|
|
|
description = ''
|
|
|
|
|
If the device does not currently contain a filesystem (as
|
|
|
|
|
determined by <command>blkid</command>, then automatically
|
|
|
|
|
format it with the filesystem type specified in
|
|
|
|
|
<option>fsType</option>. Use with caution.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2015-10-04 01:14:53 +00:00
|
|
|
|
formatOptions = mkOption {
|
|
|
|
|
default = "";
|
|
|
|
|
type = types.str;
|
|
|
|
|
description = ''
|
|
|
|
|
If <option>autoFormat</option> option is set specifies
|
|
|
|
|
extra options passed to mkfs.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2015-09-24 16:13:14 +00:00
|
|
|
|
autoResize = mkOption {
|
|
|
|
|
default = false;
|
|
|
|
|
type = types.bool;
|
|
|
|
|
description = ''
|
|
|
|
|
If set, the filesystem is grown to its maximum size before
|
|
|
|
|
being mounted. (This is typically the size of the containing
|
|
|
|
|
partition.) This is currently only supported for ext2/3/4
|
|
|
|
|
filesystems that are mounted during early boot.
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
2012-11-02 17:02:12 +00:00
|
|
|
|
noCheck = mkOption {
|
|
|
|
|
default = false;
|
|
|
|
|
type = types.bool;
|
|
|
|
|
description = "Disable running fsck on this filesystem.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
mountPoint = mkDefault name;
|
2014-07-30 13:44:47 +00:00
|
|
|
|
device = mkIf (config.fsType == "tmpfs") (mkDefault config.fsType);
|
2016-03-14 16:24:36 +00:00
|
|
|
|
options = mkIf config.autoResize [ "x-nixos.autoresize" ];
|
2015-10-04 01:14:53 +00:00
|
|
|
|
|
|
|
|
|
# -F needed to allow bare block device without partitions
|
|
|
|
|
formatOptions = mkIf ((builtins.substring 0 3 config.fsType) == "ext") (mkDefault "-F");
|
2012-11-02 17:02:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2012-03-15 13:54:23 +00:00
|
|
|
|
in
|
2012-10-12 21:32:36 +00:00
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
###### interface
|
2009-05-27 23:14:38 +00:00
|
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
2009-06-11 16:03:57 +00:00
|
|
|
|
fileSystems = mkOption {
|
2013-11-18 15:26:39 +00:00
|
|
|
|
default = {};
|
2016-06-19 07:02:24 +00:00
|
|
|
|
example = literalExample ''
|
|
|
|
|
{
|
|
|
|
|
"/".device = "/dev/hda1";
|
|
|
|
|
"/data" = {
|
|
|
|
|
device = "/dev/hda2";
|
|
|
|
|
fsType = "ext3";
|
|
|
|
|
options = [ "data=journal" ];
|
|
|
|
|
};
|
|
|
|
|
"/bigdisk".label = "bigdisk";
|
|
|
|
|
}
|
|
|
|
|
'';
|
2012-11-02 17:02:12 +00:00
|
|
|
|
type = types.loaOf types.optionSet;
|
|
|
|
|
options = [ fileSystemOpts ];
|
2012-03-09 14:37:58 +00:00
|
|
|
|
description = ''
|
2009-05-27 23:14:38 +00:00
|
|
|
|
The file systems to be mounted. It must include an entry for
|
2013-10-28 12:36:45 +00:00
|
|
|
|
the root directory (<literal>mountPoint = "/"</literal>). Each
|
2009-05-27 23:14:38 +00:00
|
|
|
|
entry in the list is an attribute set with the following fields:
|
|
|
|
|
<literal>mountPoint</literal>, <literal>device</literal>,
|
|
|
|
|
<literal>fsType</literal> (a file system type recognised by
|
|
|
|
|
<command>mount</command>; defaults to
|
2013-10-28 12:36:45 +00:00
|
|
|
|
<literal>"auto"</literal>), and <literal>options</literal>
|
2009-05-27 23:14:38 +00:00
|
|
|
|
(the mount options passed to <command>mount</command> using the
|
2015-10-21 17:37:14 +00:00
|
|
|
|
<option>-o</option> flag; defaults to <literal>[ "defaults" ]</literal>).
|
2009-05-27 23:14:38 +00:00
|
|
|
|
|
|
|
|
|
Instead of specifying <literal>device</literal>, you can also
|
|
|
|
|
specify a volume label (<literal>label</literal>) for file
|
|
|
|
|
systems that support it, such as ext2/ext3 (see <command>mke2fs
|
|
|
|
|
-L</command>).
|
2012-03-09 14:37:58 +00:00
|
|
|
|
'';
|
2009-05-27 23:14:38 +00:00
|
|
|
|
};
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2012-03-09 14:37:58 +00:00
|
|
|
|
system.fsPackages = mkOption {
|
2009-05-27 23:14:38 +00:00
|
|
|
|
internal = true;
|
2012-03-09 14:37:58 +00:00
|
|
|
|
default = [ ];
|
|
|
|
|
description = "Packages supplying file system mounters and checkers.";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
boot.supportedFilesystems = mkOption {
|
|
|
|
|
default = [ ];
|
|
|
|
|
example = [ "btrfs" ];
|
2015-06-15 16:18:46 +00:00
|
|
|
|
type = types.listOf types.str;
|
2012-03-09 14:37:58 +00:00
|
|
|
|
description = "Names of supported filesystem types.";
|
|
|
|
|
};
|
|
|
|
|
|
2009-05-27 23:14:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
|
###### implementation
|
2009-05-27 23:14:38 +00:00
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
|
config = {
|
2009-05-27 23:14:38 +00:00
|
|
|
|
|
2012-11-02 17:02:12 +00:00
|
|
|
|
boot.supportedFilesystems = map (fs: fs.fsType) fileSystems;
|
2012-03-09 14:37:58 +00:00
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
|
# Add the mount helpers to the system path so that `mount' can find them.
|
2012-03-09 14:37:58 +00:00
|
|
|
|
system.fsPackages = [ pkgs.dosfstools ];
|
2012-10-12 21:32:36 +00:00
|
|
|
|
|
2015-04-19 19:27:52 +00:00
|
|
|
|
environment.systemPackages = [ pkgs.fuse ] ++ config.system.fsPackages;
|
2011-09-14 18:20:50 +00:00
|
|
|
|
|
2013-02-03 13:12:49 +00:00
|
|
|
|
environment.etc.fstab.text =
|
2014-12-29 01:53:37 +00:00
|
|
|
|
let
|
2015-09-21 12:43:05 +00:00
|
|
|
|
fsToSkipCheck = [ "none" "btrfs" "zfs" "tmpfs" "nfs" "vboxsf" ];
|
2014-12-29 01:53:37 +00:00
|
|
|
|
skipCheck = fs: fs.noCheck || fs.device == "none" || builtins.elem fs.fsType fsToSkipCheck;
|
|
|
|
|
in ''
|
2013-02-03 13:12:49 +00:00
|
|
|
|
# This is a generated file. Do not edit!
|
|
|
|
|
|
|
|
|
|
# Filesystems.
|
|
|
|
|
${flip concatMapStrings fileSystems (fs:
|
2014-07-30 11:10:03 +00:00
|
|
|
|
(if fs.device != null then fs.device
|
|
|
|
|
else if fs.label != null then "/dev/disk/by-label/${fs.label}"
|
|
|
|
|
else throw "No device specified for mount point ‘${fs.mountPoint}’.")
|
2013-02-03 13:12:49 +00:00
|
|
|
|
+ " " + fs.mountPoint
|
|
|
|
|
+ " " + fs.fsType
|
2015-10-21 17:37:14 +00:00
|
|
|
|
+ " " + builtins.concatStringsSep "," fs.options
|
2013-02-03 13:12:49 +00:00
|
|
|
|
+ " 0"
|
2014-12-29 01:53:37 +00:00
|
|
|
|
+ " " + (if skipCheck fs then "0" else
|
2013-02-03 13:12:49 +00:00
|
|
|
|
if fs.mountPoint == "/" then "1" else "2")
|
|
|
|
|
+ "\n"
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
# Swap devices.
|
|
|
|
|
${flip concatMapStrings config.swapDevices (sw:
|
2015-10-18 18:20:46 +00:00
|
|
|
|
"${sw.realDevice} none swap${prioOption sw.priority}\n"
|
2013-02-03 13:12:49 +00:00
|
|
|
|
)}
|
|
|
|
|
'';
|
2010-06-04 14:22:11 +00:00
|
|
|
|
|
2012-10-12 19:08:44 +00:00
|
|
|
|
# Provide a target that pulls in all filesystems.
|
2013-01-16 11:33:18 +00:00
|
|
|
|
systemd.targets.fs =
|
2012-10-12 19:08:44 +00:00
|
|
|
|
{ description = "All File Systems";
|
|
|
|
|
wants = [ "local-fs.target" "remote-fs.target" ];
|
|
|
|
|
};
|
|
|
|
|
|
2012-10-12 21:32:36 +00:00
|
|
|
|
# Emit systemd services to format requested filesystems.
|
2013-01-16 11:33:18 +00:00
|
|
|
|
systemd.services =
|
2012-10-12 21:32:36 +00:00
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
formatDevice = fs:
|
|
|
|
|
let
|
|
|
|
|
mountPoint' = escapeSystemdPath fs.mountPoint;
|
|
|
|
|
device' = escapeSystemdPath fs.device;
|
|
|
|
|
in nameValuePair "mkfs-${device'}"
|
|
|
|
|
{ description = "Initialisation of Filesystem ${fs.device}";
|
|
|
|
|
wantedBy = [ "${mountPoint'}.mount" ];
|
2012-10-31 13:49:09 +00:00
|
|
|
|
before = [ "${mountPoint'}.mount" "systemd-fsck@${device'}.service" ];
|
2013-06-25 14:46:23 +00:00
|
|
|
|
requires = [ "${device'}.device" ];
|
2012-10-12 21:32:36 +00:00
|
|
|
|
after = [ "${device'}.device" ];
|
|
|
|
|
path = [ pkgs.utillinux ] ++ config.system.fsPackages;
|
|
|
|
|
script =
|
|
|
|
|
''
|
|
|
|
|
if ! [ -e "${fs.device}" ]; then exit 1; fi
|
|
|
|
|
# FIXME: this is scary. The test could be more robust.
|
2012-05-16 00:03:44 +00:00
|
|
|
|
type=$(blkid -p -s TYPE -o value "${fs.device}" || true)
|
|
|
|
|
if [ -z "$type" ]; then
|
|
|
|
|
echo "creating ${fs.fsType} filesystem on ${fs.device}..."
|
2015-10-04 01:14:53 +00:00
|
|
|
|
mkfs.${fs.fsType} ${fs.formatOptions} "${fs.device}"
|
2012-05-16 00:03:44 +00:00
|
|
|
|
fi
|
2012-10-12 21:32:36 +00:00
|
|
|
|
'';
|
|
|
|
|
unitConfig.RequiresMountsFor = [ "${dirOf fs.device}" ];
|
|
|
|
|
unitConfig.DefaultDependencies = false; # needed to prevent a cycle
|
|
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
|
};
|
2010-06-07 12:15:55 +00:00
|
|
|
|
|
2012-11-02 17:02:12 +00:00
|
|
|
|
in listToAttrs (map formatDevice (filter (fs: fs.autoFormat) fileSystems));
|
2006-12-21 14:22:40 +00:00
|
|
|
|
|
2009-03-06 12:27:33 +00:00
|
|
|
|
};
|
2009-08-11 21:10:33 +00:00
|
|
|
|
|
2006-12-21 14:22:40 +00:00
|
|
|
|
}
|