mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
42 lines
706 B
Nix
42 lines
706 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
programs.looking-glass-client = {
|
||
|
enable = true;
|
||
|
package = config.lib.test.mkStubPackage { };
|
||
|
|
||
|
settings = {
|
||
|
app = {
|
||
|
allowDMA = true;
|
||
|
shmFile = "/dev/kvmfr0";
|
||
|
};
|
||
|
|
||
|
win = {
|
||
|
fullScreen = true;
|
||
|
showFPS = false;
|
||
|
jitRender = true;
|
||
|
};
|
||
|
|
||
|
spice = {
|
||
|
enable = true;
|
||
|
audio = true;
|
||
|
};
|
||
|
|
||
|
input = {
|
||
|
rawMouse = true;
|
||
|
escapeKey = 62;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.config/looking-glass/client.ini \
|
||
|
${./example-config.ini}
|
||
|
'';
|
||
|
};
|
||
|
}
|