forked from colonelpanic/dotfiles
9 lines
152 B
Nix
9 lines
152 B
Nix
{ lib, ... }: {
|
|
options = {
|
|
modules.xmonad.picom.vSync.enable = lib.makeOption {
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
};
|
|
}
|