Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
10 lines
160 B
Nix
10 lines
160 B
Nix
{
|
|
config.flake.factory.grub-boot = device: {
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
inherit device;
|
|
configurationLimit = 10;
|
|
};
|
|
};
|
|
}
|