feat: add statsDaemon.interval setting, pass --interval to nova-stats

This commit is contained in:
Damocles 2026-04-15 19:01:29 +02:00
parent c8d71bd871
commit 937ae5af2e
4 changed files with 35 additions and 3 deletions

View file

@ -169,6 +169,17 @@ in
};
}
);
statsDaemon = lib.mkOption {
default = { };
description = "Configuration for the nova-stats daemon.";
type = lib.types.submodule {
options.interval = lib.mkOption {
type = lib.types.int;
default = -1;
description = "nova-stats polling interval in milliseconds (-1 = use binary default of 1s).";
};
};
};
};
theme = lib.mkOption {