feat: add statsDaemon.interval setting, pass --interval to nova-stats
This commit is contained in:
parent
c8d71bd871
commit
937ae5af2e
4 changed files with 35 additions and 3 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue