mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 11:19:44 +01:00
7add9ce2e5
Removed by upstream since commit:
bcbc410c92
This commit is included since v9 release:
https://github.com/yshui/picom/releases/tag/v9
https://github.com/yshui/picom/releases/tag/v9-rc1 (the actual changelog)
While this doesn't break the config per see, it results in the
following warning in the logs:
[ DD/MM/YYYY HH:MM:SS.mmm parse_config_libconfig WARN ] The
refresh-rate option has been deprecated. Please remove it from
your configuration file. If you encounter any problems without
this feature, please feel free to open a bug report
Beside the above change we also remove an old workaround and also
write the configuration file to a well-known location in the user's
home directory.
37 lines
929 B
Nix
37 lines
929 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.picom = {
|
|
enable = true;
|
|
fade = true;
|
|
fadeDelta = 5;
|
|
fadeSteps = [ "0.04" "0.04" ];
|
|
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;
|
|
extraOptions = ''
|
|
unredir-if-possible = true;
|
|
dbe = true;
|
|
'';
|
|
experimentalBackends = true;
|
|
};
|
|
|
|
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}
|
|
'';
|
|
}
|