nixpkgs/nixos/modules/system/boot/tmp.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.7 KiB
Nix
Raw Normal View History

{ config, lib, ... }:
2021-09-02 14:20:50 +01:00
let
cfg = config.boot.tmp;
2021-09-02 14:20:50 +01:00
in
{
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" ])
];
options = {
boot.tmp = {
2024-08-28 20:19:12 +01:00
cleanOnBoot = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Whether to delete all files in {file}`/tmp` during boot.
'';
};
2024-08-28 20:19:12 +01:00
tmpfsSize = lib.mkOption {
type = lib.types.oneOf [ lib.types.str lib.types.ints.positive ];
default = "50%";
description = ''
Size of tmpfs in percentage.
Percentage is defined by systemd.
'';
};
2024-08-28 20:19:12 +01:00
useTmpfs = lib.mkOption {
type = lib.types.bool;
default = false;
description = ''
Whether to mount a tmpfs on {file}`/tmp` during boot.
::: {.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.
:::
'';
};
};
};
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 [
{
what = "tmpfs";
where = "/tmp";
type = "tmpfs";
2024-08-28 20:19:12 +01:00
mountConfig.Options = lib.concatStringsSep "," [
"mode=1777"
"strictatime"
"rw"
"nosuid"
"nodev"
"size=${toString cfg.tmpfsSize}"
];
}
];
2024-08-28 20:19:12 +01:00
systemd.tmpfiles.rules = lib.optional cfg.cleanOnBoot "D! /tmp 1777 root root";
};
2020-08-08 01:54:16 +01:00
}