mirror of
https://github.com/szymon-jozef/amazing-dotfiles.git
synced 2026-09-07 12:10:45 +02:00
20 lines
366 B
Nix
20 lines
366 B
Nix
{
|
|
userConfig,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
uwsm_run = "${pkgs.uwsm}/bin/uwsm";
|
|
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"
|
|
];
|
|
};
|
|
}
|