modules: system: put modules into folders
This commit is contained in:
parent
d5b09c48ef
commit
7bec7ae0f9
9 changed files with 6 additions and 6 deletions
21
modules/system/boot/default.nix
Normal file
21
modules/system/boot/default.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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue