modules: system: add boot
And enable mounting `/tmp` as tmpfs by default.
This commit is contained in:
parent
b8be3d80a8
commit
8f266245ee
21
modules/system/boot.nix
Normal file
21
modules/system/boot.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./boot.nix
|
||||
./documentation.nix
|
||||
./language.nix
|
||||
./media.nix
|
||||
|
|
Loading…
Reference in a new issue