forked from DGNum/liminix
fix illegal module options
This commit is contained in:
parent
7fad66ff27
commit
4689cebf8d
2 changed files with 1 additions and 2 deletions
|
@ -27,7 +27,7 @@ in {
|
||||||
kernel = {
|
kernel = {
|
||||||
src = mkOption { type = types.package; } ;
|
src = mkOption { type = types.package; } ;
|
||||||
modular = mkOption {
|
modular = mkOption {
|
||||||
type = types.boolean;
|
type = types.bool;
|
||||||
default = true;
|
default = true;
|
||||||
description = "support loadable kernel modules";
|
description = "support loadable kernel modules";
|
||||||
};
|
};
|
||||||
|
|
|
@ -12,7 +12,6 @@ in
|
||||||
options = {
|
options = {
|
||||||
boot.initramfs = {
|
boot.initramfs = {
|
||||||
enable = mkEnableOption "enable initramfs";
|
enable = mkEnableOption "enable initramfs";
|
||||||
default = false;
|
|
||||||
};
|
};
|
||||||
system.outputs.initramfs = mkOption {
|
system.outputs.initramfs = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
|
|
Loading…
Reference in a new issue