15 lines
228 B
Nix
15 lines
228 B
Nix
{ lib, ... }:
|
|
{
|
|
options = {
|
|
swappiness = lib.mkOption {
|
|
type = lib.types.int;
|
|
default = 10;
|
|
};
|
|
|
|
hm = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.anything;
|
|
default = { };
|
|
};
|
|
};
|
|
}
|