[NixOS] Enable picom vsync for machines other than ryzen-shine

This commit is contained in:
2023-08-22 12:32:05 -06:00
parent 0c9f37f014
commit bf132b32b4
3 changed files with 11 additions and 1 deletions

8
nixos/options.nix Normal file
View File

@@ -0,0 +1,8 @@
{ lib, ... }: {
options = {
modules.xmonad.picom.vSync.enable = lib.makeOption {
default = true;
type = lib.types.bool;
};
};
}