Files
omarchy-nix/modules/home-manager/hyprland/autostart.nix
T
Gaétan Lepage fba993c589 Format project with official nixfmt formatter (#21)
* Set nix official formatter for the flake

* format the entire project
2025-10-15 15:09:51 -05:00

24 lines
480 B
Nix

{
config,
pkgs,
...
}:
{
wayland.windowManager.hyprland.settings = {
exec-once = [
# "hypridle & mako & waybar & fcitx5"
# "waybar"
# "swaybg -i ~/.config/omarchy/current/background -m fill"
"hyprsunset"
"systemctl --user start hyprpolkitagent"
"wl-clip-persist --clipboard regular & clipse -listen"
# "dropbox-cli start" # Uncomment to run Dropbox
];
exec = [
"pkill -SIGUSR2 waybar || waybar"
];
};
}