picom: Don't use systemd service

No need to start picom in Hyprland.
This commit is contained in:
Donovan Glover 2024-08-27 20:11:23 -04:00
parent 1901a33e87
commit 8d2a1685ec
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,3 +1,5 @@
{ lib, ... }:
{
services.picom = rec {
enable = true;
@ -38,4 +40,6 @@
];
};
};
systemd.user.services.picom = lib.mkForce { };
}