forked from Shinonome/omarchy-nix
fba993c589
* Set nix official formatter for the flake * format the entire project
24 lines
480 B
Nix
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"
|
|
];
|
|
};
|
|
}
|