dotfiles/modules/home/gui/desktop/niri/config/startup.nix
2025-05-16 20:03:42 -05:00

25 lines
688 B
Nix
Executable file

{ lib, pkgs, ... }:
{
spawn-at-startup = [
{
command = [
"${lib.getExe pkgs.xwayland-satellite}"
];
}
{ command = [ "wl-clipboard" ]; }
{ command = [ "wpaperd" ]; }
{ command = [ "gammastep" ]; }
{ command = [ "dunst" ]; }
{ command = [ "playerctld" ]; }
{ command = [ "waybar" ]; }
{ command = [ "nm-applet" ]; }
{ command = [ "blueman-applet" ]; }
{ command = [ "rfkill block bluetooth" ]; }
{ command = [ "rfkill unblock bluetooth" ]; }
{ command = [ "easyeffects -r" ]; }
{ command = [ "vesktop" ]; }
{ command = [ "signal" ]; }
{ command = [ "feishin" ]; }
{ command = [ "zeditor" ]; }
];
}