This commit is contained in:
Kat Inskip 2025-07-14 02:57:42 -07:00
parent 6e139328bb
commit 2d05aef526
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 26 additions and 49 deletions

View file

@ -1,24 +1,7 @@
{
config,
pkgs,
...
}: let
inherit (config.base16) palette;
in {
systemd.user.services = {
mako = {
Unit = {
Description = "mako";
X-Restart-Triggers = [(toString config.xdg.configFile."mako/config".source)];
};
Service = {
ExecStart = "${pkgs.mako}/bin/mako";
Restart = "always";
};
Install = {WantedBy = ["graphical-session.target"];};
};
};
}: {
services.mako = {
enable = true;
settings = {

View file

@ -1,5 +1,4 @@
{
pkgs,
config,
...
}: {
@ -8,10 +7,6 @@
timeouts = [
{
timeout = 180;
command = "${pkgs.libnotify}/bin/notify-send 'Locking in 5 seconds from now.'";
}
{
timeout = 185;
command = "${config.programs.swaylock.package}/bin/swaylock* -f";
}
{

View file

@ -6,5 +6,5 @@ _: {
persistent = true;
};
# adds to nixpkgs.overlay, made irrelevant due to `home-manager.useGlobalPkgs`
chaotic.nyx.overlay.enable = false;
#chaotic.nyx.overlay.enable = false;
}