10 lines
124 B
Nix
10 lines
124 B
Nix
{ lib, ... }:
|
|
{
|
|
options = {
|
|
swappiness = lib.mkOption {
|
|
type = lib.types.int;
|
|
default = 10;
|
|
};
|
|
};
|
|
}
|