mirror of
https://github.com/ItsDrike/nixdots
synced 2025-01-01 02:34:34 +00:00
12 lines
467 B
Nix
12 lines
467 B
Nix
{pkgs, ...}:
|
|
pkgs.writeTextFile {
|
|
name = "dbus-hyprland-env";
|
|
destination = "/bin/dbus-hyprland-environment";
|
|
executable = true;
|
|
text = ''
|
|
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=hyprland
|
|
systemctl --user stop pipewire pipewire-media-session xdg-desktop-portal xdg-desktop-portal-wlr
|
|
systemctl --user start pipewire wireplumber pipewire-media-session xdg-desktop-portal xdg-desktop-portal-hyprland
|
|
'';
|
|
}
|