no it did not
This commit is contained in:
parent
4662de75f9
commit
89a1612df1
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ lib, pkgs, config, ...}: let
|
{ lib, pkgs, config, ...}: let
|
||||||
inherit (lib) mkIf mkEnableOption mkOption types;
|
inherit (lib) mkIf mkEnableOption mkOption types optionals;
|
||||||
cfg = config.chuj.stuff.i3;
|
cfg = config.chuj.stuff.i3;
|
||||||
user = config.chuj.system.user;
|
user = config.chuj.system.user;
|
||||||
in {
|
in {
|
||||||
|
@ -91,8 +91,8 @@ in {
|
||||||
{ command = "autotiling &"; notification = false; }
|
{ command = "autotiling &"; notification = false; }
|
||||||
# { command = "mpd &"; notification = false; }
|
# { command = "mpd &"; notification = false; }
|
||||||
]
|
]
|
||||||
++ optionals config.chuj.stuff.dunst.enable { command = "dunst &"; 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.flameshot.enable [{ command = "flameshot &"; notification = false; }]
|
||||||
++ optionals cfg.communicators.autostart [
|
++ optionals cfg.communicators.autostart [
|
||||||
{ command = "i3-msg \"workspace ${cfg.communicators.workspace}; append_layout ${../../files/i3_communicators_layout.json}\""; notification = false; }
|
{ command = "i3-msg \"workspace ${cfg.communicators.workspace}; append_layout ${../../files/i3_communicators_layout.json}\""; notification = false; }
|
||||||
{ command = "discord &"; notification = false; }
|
{ command = "discord &"; notification = false; }
|
||||||
|
|
Loading…
Reference in a new issue