Merge branch 'main' of ssh://git.home/megamanmalte/nixos
This commit is contained in:
commit
733b33bd01
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue