modules: system: add boot

And enable mounting `/tmp` as tmpfs by default.
This commit is contained in:
Bruno BELANYI 2021-06-14 16:41:28 +02:00
parent dd1742b5b8
commit e4d3d8a949
2 changed files with 22 additions and 0 deletions

21
modules/system/boot.nix Normal file
View File

@ -0,0 +1,21 @@
{ config, lib, ... }:
let
cfg = config.my.system.boot;
in
{
options.my.system.boot = with lib; {
tmp = {
clean = mkEnableOption "clean `/tmp` on boot.";
tmpfs = my.mkDisableOption "mount `/tmp` as a tmpfs on boot.";
};
};
config = {
boot = {
cleanTmpDir = cfg.tmp.clean;
tmpOnTmpfs = cfg.tmp.tmpfs;
};
};
}

View File

@ -3,6 +3,7 @@
{
imports = [
./boot.nix
./documentation.nix
./language.nix
./media.nix