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