feat: add startup commands as module

This commit is contained in:
Swarsel 2024-07-25 14:26:28 +02:00
parent 956c260268
commit 5e2aae9558
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
7 changed files with 156 additions and 78 deletions

18
modules/home/startup.nix Normal file
View file

@ -0,0 +1,18 @@
{ lib, config, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.swarselsystems.startup = mkOption {
type = types.listOf (types.attrsOf types.str);
default = [
{ command = "nextcloud --background"; }
{ command = "discord --start-minimized"; }
{ 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"; }
];
};
}