23 lines
488 B
Nix
23 lines
488 B
Nix
{
|
|
flake.nixosModules.ntsync = {
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
cfg = config.hive.ntsync;
|
|
in {
|
|
options.hive.ntsync.enable = lib.mkEnableOption "Enable the nt-sync kernel driver.";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
{
|
|
assertion = lib.versionAtLeast config.boot.kernelPackages.kernel.version "6.14";
|
|
message = "ntsync requires at least linux 6.14";
|
|
}
|
|
];
|
|
|
|
boot.kernelModules = ["ntsync"];
|
|
};
|
|
};
|
|
}
|