ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
39 lines
924 B
Nix
39 lines
924 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.hardware.ksm;
|
|
|
|
in {
|
|
imports = [
|
|
(mkRenamedOptionModule [ "hardware" "enableKSM" ] [ "hardware" "ksm" "enable" ])
|
|
];
|
|
|
|
options.hardware.ksm = {
|
|
enable = mkEnableOption (lib.mdDoc "Kernel Same-Page Merging");
|
|
sleep = mkOption {
|
|
type = types.nullOr types.int;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
How many milliseconds ksmd should sleep between scans.
|
|
Setting it to `null` uses the kernel's default time.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd.services.enable-ksm = {
|
|
description = "Enable Kernel Same-Page Merging";
|
|
wantedBy = [ "multi-user.target" ];
|
|
script =
|
|
''
|
|
echo 1 > /sys/kernel/mm/ksm/run
|
|
'' + optionalString (cfg.sleep != null)
|
|
''
|
|
echo ${toString cfg.sleep} > /sys/kernel/mm/ksm/sleep_millisecs
|
|
'';
|
|
};
|
|
};
|
|
}
|