2014-07-25 19:05:57 +01:00
|
|
|
{ config, lib, ... }:
|
2021-09-02 14:20:50 +01:00
|
|
|
let
|
2022-12-04 20:44:47 +00:00
|
|
|
cfg = config.boot.tmp;
|
2021-09-02 14:20:50 +01:00
|
|
|
in
|
2014-07-25 19:05:57 +01:00
|
|
|
{
|
2022-12-04 20:44:47 +00:00
|
|
|
imports = [
|
2024-08-28 20:19:12 +01:00
|
|
|
(lib.mkRenamedOptionModule [ "boot" "cleanTmpDir" ] [ "boot" "tmp" "cleanOnBoot" ])
|
|
|
|
(lib.mkRenamedOptionModule [ "boot" "tmpOnTmpfs" ] [ "boot" "tmp" "useTmpfs" ])
|
|
|
|
(lib.mkRenamedOptionModule [ "boot" "tmpOnTmpfsSize" ] [ "boot" "tmp" "tmpfsSize" ])
|
2022-12-04 20:44:47 +00:00
|
|
|
];
|
2014-07-25 19:05:57 +01:00
|
|
|
|
|
|
|
options = {
|
2022-12-04 20:44:47 +00:00
|
|
|
boot.tmp = {
|
2024-08-28 20:19:12 +01:00
|
|
|
cleanOnBoot = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
2022-12-04 20:44:47 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to delete all files in {file}`/tmp` during boot.
|
|
|
|
'';
|
|
|
|
};
|
2014-07-25 19:05:57 +01:00
|
|
|
|
2024-08-28 20:19:12 +01:00
|
|
|
tmpfsSize = lib.mkOption {
|
|
|
|
type = lib.types.oneOf [ lib.types.str lib.types.ints.positive ];
|
2022-12-04 20:44:47 +00:00
|
|
|
default = "50%";
|
|
|
|
description = ''
|
|
|
|
Size of tmpfs in percentage.
|
|
|
|
Percentage is defined by systemd.
|
|
|
|
'';
|
|
|
|
};
|
2014-07-25 19:05:57 +01:00
|
|
|
|
2024-08-28 20:19:12 +01:00
|
|
|
useTmpfs = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
2022-12-04 20:44:47 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to mount a tmpfs on {file}`/tmp` during boot.
|
2023-03-20 16:27:06 +00:00
|
|
|
|
|
|
|
::: {.note}
|
|
|
|
Large Nix builds can fail if the mounted tmpfs is not large enough.
|
|
|
|
In such a case either increase the tmpfsSize or disable this option.
|
|
|
|
:::
|
2022-12-04 20:44:47 +00:00
|
|
|
'';
|
|
|
|
};
|
2014-07-25 19:05:57 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
2021-09-02 14:20:50 +01:00
|
|
|
# When changing remember to update /tmp mount in virtualisation/qemu-vm.nix
|
2024-08-28 20:19:12 +01:00
|
|
|
systemd.mounts = lib.mkIf cfg.useTmpfs [
|
2020-12-23 21:44:20 +00:00
|
|
|
{
|
|
|
|
what = "tmpfs";
|
|
|
|
where = "/tmp";
|
2021-01-09 14:32:17 +00:00
|
|
|
type = "tmpfs";
|
2024-08-28 20:19:12 +01:00
|
|
|
mountConfig.Options = lib.concatStringsSep "," [
|
2022-12-04 20:44:47 +00:00
|
|
|
"mode=1777"
|
|
|
|
"strictatime"
|
|
|
|
"rw"
|
|
|
|
"nosuid"
|
|
|
|
"nodev"
|
|
|
|
"size=${toString cfg.tmpfsSize}"
|
|
|
|
];
|
2020-12-23 21:44:20 +00:00
|
|
|
}
|
|
|
|
];
|
2014-07-25 19:05:57 +01:00
|
|
|
|
2024-08-28 20:19:12 +01:00
|
|
|
systemd.tmpfiles.rules = lib.optional cfg.cleanOnBoot "D! /tmp 1777 root root";
|
2014-07-25 19:05:57 +01:00
|
|
|
};
|
2020-08-08 01:54:16 +01:00
|
|
|
}
|