[NixOS] Fix configuration

This commit is contained in:
Ivan Malison 2023-08-22 13:30:32 -06:00
parent a0bccc9992
commit a8d65896ff
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@
./keybase.nix
./nix.nix
./nixified.ai.nix
./options.nix
./ssh.nix
./syncthing.nix
./users.nix

View File

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