refactor(nix/hm/price): move cliphist to separate conf

This commit is contained in:
Price Hiller 2024-06-17 15:44:30 -05:00
parent 5b4ecc05ee
commit dacbcd5a44
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 12 additions and 9 deletions

View File

@ -0,0 +1,12 @@
{ ... }:
{
services.cliphist.enable = true;
system.user.services.cliphist = {
Service.RestartSec = 3;
Install.WantedBy = [ "compositor.target" ];
Unit = {
PartOf = [ "compositor.target" ];
After = [ "compositor.target" ];
};
};
}

View File

@ -468,7 +468,6 @@ in
} }
]; ];
}; };
cliphist.enable = true;
easyeffects.enable = true; easyeffects.enable = true;
}; };
@ -564,14 +563,6 @@ in
After = [ "compositor.target" ]; After = [ "compositor.target" ];
}; };
}; };
cliphist = {
Service.RestartSec = 3;
Install.WantedBy = [ "compositor.target" ];
Unit = {
PartOf = [ "compositor.target" ];
After = [ "compositor.target" ];
};
};
polkit-gnome-authentication-agent-1 = { polkit-gnome-authentication-agent-1 = {
Unit = { Unit = {
Description = "Gnome Polkit authentication agent"; Description = "Gnome Polkit authentication agent";