modules: system: add boot
And enable mounting `/tmp` as tmpfs by default.
This commit is contained in:
parent
dd1742b5b8
commit
e4d3d8a949
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 = [
|
imports = [
|
||||||
|
./boot.nix
|
||||||
./documentation.nix
|
./documentation.nix
|
||||||
./language.nix
|
./language.nix
|
||||||
./media.nix
|
./media.nix
|
||||||
|
|
Loading…
Reference in a new issue