mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
c94c9c342f
`--experimental-backends` flag was removed in the recent released picom v10. Using it now will result in the program exiting. v10 also introduces its counter-part, `--legacy-backends`. However this will be removed soon. Instead of adding this as an separate option, add `extraArgs` option so for those that they want they can pass it manuall. It is also more future proof.
37 lines
933 B
Nix
37 lines
933 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.picom = {
|
|
enable = true;
|
|
fade = true;
|
|
fadeDelta = 5;
|
|
fadeSteps = [ 4.0e-2 4.0e-2 ];
|
|
fadeExclude =
|
|
[ "window_type *= 'menu'" "name ~= 'Firefox$'" "focused = 1" ];
|
|
shadow = true;
|
|
shadowOffsets = [ (-10) (-15) ];
|
|
shadowOpacity = 0.8;
|
|
shadowExclude =
|
|
[ "window_type *= 'menu'" "name ~= 'Firefox$'" "focused = 1" ];
|
|
backend = "xrender";
|
|
vSync = true;
|
|
settings = {
|
|
"unredir-if-possible" = true;
|
|
"dbe" = true;
|
|
};
|
|
extraArgs = [ "--legacy-backends" ];
|
|
};
|
|
|
|
test.stubs.picom = { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/.config/picom/picom.conf \
|
|
${./picom-basic-configuration-expected.conf}
|
|
|
|
serviceFile=$(normalizeStorePaths home-files/.config/systemd/user/picom.service)
|
|
assertFileContent \
|
|
"$serviceFile" \
|
|
${./picom-basic-configuration-expected.service}
|
|
'';
|
|
}
|