feat(hyprland): hy3, split up, clean up

This commit is contained in:
Kat Inskip 2025-12-17 15:06:33 -08:00
parent e7e33f90b1
commit 5b37548c2c
10 changed files with 758 additions and 146 deletions

View file

@ -0,0 +1,11 @@
{ lib, pkgs, ... }: {
wayland.windowManager.hyprland.settings.exec-once = let
inherit (lib.meta) getExe getExe';
in [
"${getExe pkgs.swww} init"
"${getExe' pkgs.dbus "dbus-update-activation-environment"} --all"
(getExe' pkgs.networkmanagerapplet "nm-applet")
(getExe pkgs.udiskie)
"${getExe' pkgs.systemd "systemctl"} restart konawall-py --user"
];
}