nixos-config/modules/home/programs/gui/looking-glass/default.nix

8 lines
206 B
Nix
Raw Normal View History

{ config, ... }:
{
programs.looking-glass-client = {
2025-02-27 11:42:57 -05:00
enable = if config.home.desktop.enable && config.nixpkgs.system == "x86_64-linux" then true else false;
2025-03-05 02:17:33 -05:00
settings.input.rawMouse = true;
};
}