mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-22 00:21:34 +01:00
11 lines
245 B
Nix
11 lines
245 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.myConfig.boot.loader.grub.enable = lib.mkEnableOption "";
|
|
|
|
config = lib.mkIf config.myConfig.boot.loader.grub.enable {
|
|
boot = {
|
|
tmp.cleanOnBoot = true;
|
|
loader.grub.enable = true;
|
|
};
|
|
};
|
|
}
|