19 lines
271 B
Nix
19 lines
271 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
services.picom = {
|
||
|
enable = true;
|
||
|
# backend = "glx";
|
||
|
};
|
||
|
xsession.windowManager.i3.config.startup = [
|
||
|
{
|
||
|
command = "systemctl --user restart picom";
|
||
|
always = true;
|
||
|
notification = false;
|
||
|
}
|
||
|
];
|
||
|
}
|