no it did not

This commit is contained in:
krizej 2024-08-01 21:29:07 +02:00
parent 4662de75f9
commit 89a1612df1
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
{ lib, pkgs, config, ...}: let
inherit (lib) mkIf mkEnableOption mkOption types;
inherit (lib) mkIf mkEnableOption mkOption types optionals;
cfg = config.chuj.stuff.i3;
user = config.chuj.system.user;
in {
@ -91,8 +91,8 @@ in {
{ command = "autotiling &"; notification = false; }
# { command = "mpd &"; notification = false; }
]
++ optionals config.chuj.stuff.dunst.enable { command = "dunst &"; notification = false; }
++ optionals config.chuj.stuff.flameshot.enable { command = "flameshot &"; notification = false; }
++ optionals config.chuj.stuff.dunst.enable [{ command = "dunst &"; notification = false; }]
++ optionals config.chuj.stuff.flameshot.enable [{ command = "flameshot &"; notification = false; }]
++ optionals cfg.communicators.autostart [
{ command = "i3-msg \"workspace ${cfg.communicators.workspace}; append_layout ${../../files/i3_communicators_layout.json}\""; notification = false; }
{ command = "discord &"; notification = false; }