mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
19 lines
704 B
Nix
19 lines
704 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) mkOption types;
|
|
in
|
|
{
|
|
|
|
options.swarselsystems.startup = mkOption {
|
|
type = types.listOf (types.attrsOf types.str);
|
|
default = [
|
|
{ command = "nextcloud --background"; }
|
|
{ command = "vesktop --start-minimized --enable-speech-dispatcher --ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime"; }
|
|
{ command = "element-desktop --hidden --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu-driver-bug-workarounds"; }
|
|
{ command = "ANKI_WAYLAND=1 anki"; }
|
|
{ command = "OBSIDIAN_USE_WAYLAND=1 obsidian"; }
|
|
{ command = "nm-applet"; }
|
|
{ command = "feishin"; }
|
|
];
|
|
};
|
|
}
|