Skip to content

Commit

Permalink
feat(picom): changed package to default
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Sep 4, 2024
1 parent e0ed8e2 commit 7226751
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/desktop/submodules/picom.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ let
gameStaff = bash.mkBashArray (builtins.map (x: x.pname or x.name or x) config.modules.desktop.gaming.games.installed);
in
{
config = {
config = rec {
systemd.user.services.${guardName} = {
enable = config.modules.desktop.gaming.steam.enable;
enable = config.services.picom.package != pkgs.picom;
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
after = [ "picom.service" ];
Expand Down Expand Up @@ -47,7 +47,6 @@ in

services.picom = {
enable = true;
package = pkgs.picom-allusive;
backend = "glx";
fade = true;
fadeDelta = 4;
Expand Down

0 comments on commit 7226751

Please sign in to comment.