18 lines
391 B
Nix
18 lines
391 B
Nix
# ABOUTME: Hyprland autostart configuration
|
|
# ABOUTME: Defines programs to run at Hyprland startup
|
|
|
|
{ config, pkgs, ... }:
|
|
{
|
|
wayland.windowManager.hyprland.settings = {
|
|
exec-once = [
|
|
"hyprsunset"
|
|
"systemctl --user start hyprpolkitagent"
|
|
"wl-clip-persist --clipboard regular & clipse -listen"
|
|
];
|
|
|
|
exec = [
|
|
"pkill -SIGUSR2 waybar || waybar"
|
|
];
|
|
};
|
|
}
|