Merge branch 'main' of ssh://git.home/megamanmalte/nixos

This commit is contained in:
Malte Tammena 2024-08-18 11:51:03 +02:00
commit 733b33bd01

View file

@ -1,6 +1,7 @@
{ {
pkgs, pkgs,
lib, lib,
config,
nixosConfig, nixosConfig,
... ...
}: let }: let
@ -211,6 +212,12 @@ in {
lng = 12.36; lng = 12.36;
}; };
}; };
# This ensures that the hyprpaper scripts for darkman only run after the
# backend for hyprpaper is running
systemd.user.services.darkman.Unit.After =
if builtins.hasAttr "hyprpaper" config.systemd.user.services
then ["hyprpaper.service"]
else [];
services.mpris-proxy.enable = true; services.mpris-proxy.enable = true;
services.pasystray.enable = true; services.pasystray.enable = true;