16 lines
271 B
Nix
16 lines
271 B
Nix
{ config, ... }:
|
|
{
|
|
programs.looking-glass-client = {
|
|
enable = config.home.desktop.enable;
|
|
settings = {
|
|
input = {
|
|
rawMouse = true;
|
|
escapeKey = 62;
|
|
};
|
|
spice = {
|
|
enable = true;
|
|
audio = true;
|
|
};
|
|
};
|
|
};
|
|
}
|