/ modules / home / programs / hyprland / systemd.nix
systemd.nix
 1  {
 2    lib,
 3    pkgs,
 4    ...
 5  }:
 6  {
 7    systemd.user.targets.hyprland-session.Unit.Wants = lib.mkIf pkgs.stdenv.isLinux [
 8      "xdg-desktop-autostart.target"
 9    ];
10  }