modules: system: put modules into folders

This commit is contained in:
Bruno BELANYI 2021-09-25 15:07:55 +02:00
parent d5b09c48ef
commit 7bec7ae0f9
9 changed files with 6 additions and 6 deletions

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;
};
};
}