mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
25 lines
688 B
Nix
Executable file
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" ]; }
|
|
];
|
|
}
|