20 lines
322 B
Nix
20 lines
322 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
base = {
|
||
|
services.picom = {
|
||
|
enable = true;
|
||
|
inactiveOpacity = "0.95";
|
||
|
opacityRule = [
|
||
|
"100:fullscreen"
|
||
|
"80 :class_g = 'Polybar'"
|
||
|
];
|
||
|
blur = true;
|
||
|
inactiveDim = "0.1";
|
||
|
};
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
home-manager.users.moritz = {...}: (base);
|
||
|
}
|