Files
amazing-dotfiles/modules/hypr/hyprland/autostart.nix

20 lines
370 B
Nix

{
userConfig,
pkgs,
...
}:
let
uwsm_run = "${pkgs.uwsm}/bin/uwsm app";
in
{
wayland.windowManager.hyprland.settings = {
"exec-once" = [
"wl-paste --type text --watch cliphist store"
"wl-paste --type image --watch cliphist store"
"${uwsm_run} -- ${userConfig.statusBar}"
"awww-daemon"
"openrgb -c $openrgb_color"
];
};
}