{ pkgs, device, lib, ... }: { stylix.targets.nixvim.enable = false; programs = lib.optionalAttrs (device.is "ryu" || device.is "kuro" || device.is "mirai") { nixvim = { enable = true; nixpkgs = { config = { allowUnfree = true; }; }; } // (import ./../../neovim {inherit pkgs;}); }; }