2014-07-25 19:05:57 +01:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
boot.cleanTmpDir = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to delete all files in <filename>/tmp</filename> during boot.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
boot.tmpOnTmpfs = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to mount a tmpfs on <filename>/tmp</filename> during boot.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2020-12-23 21:44:20 +00:00
|
|
|
systemd.mounts = mkIf config.boot.tmpOnTmpfs [
|
|
|
|
{
|
|
|
|
what = "tmpfs";
|
|
|
|
where = "/tmp";
|
2021-01-09 14:32:17 +00:00
|
|
|
type = "tmpfs";
|
2020-12-23 21:44:20 +00:00
|
|
|
mountConfig.Options = [ "mode=1777" "strictatime" "rw" "nosuid" "nodev" "size=50%" ];
|
|
|
|
}
|
|
|
|
];
|
2014-07-25 19:05:57 +01:00
|
|
|
|
|
|
|
systemd.tmpfiles.rules = optional config.boot.cleanTmpDir "D! /tmp 1777 root root";
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2020-08-08 01:54:16 +01:00
|
|
|
}
|