fix(module): add missing semicolons
This commit is contained in:
parent
b43660c227
commit
11b1410d2c
4 changed files with 7 additions and 7 deletions
|
@ -33,5 +33,5 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,5 +34,5 @@ in {
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,13 +20,13 @@ in {
|
||||||
enable = mkEnableOption "Modify the standard kernel settings";
|
enable = mkEnableOption "Modify the standard kernel settings";
|
||||||
version = mkOption {
|
version = mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
default = "latest";
|
default = "linuxPackages_latest";
|
||||||
example = "latest";
|
example = "linuxPackages_latest";
|
||||||
description = "Set the kernel version to be used by your system"
|
description = "Set the kernel version to be used by your system";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
kernelPackages = pkgs.linuxPackages_${cfg.version};
|
boot.kernelPackages = pkgs.${cfg.version};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,5 +36,5 @@ in {
|
||||||
options = "--delete-older-than 3d";
|
options = "--delete-older-than 3d";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue