Skip to content

Commit

Permalink
install signal-desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
tejing1 committed Sep 28, 2024
1 parent 9722c4b commit 366a91f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion homeConfigurations/tejing/chat.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
{ my, pkgs, ... }:
{ my, pkgs, pkgsUnstable, ... }:

{
home.packages = builtins.attrValues {
inherit (pkgs)
weechat
;
inherit (pkgsUnstable)
signal-desktop
;
};
xsession.windowManager.i3.config.startup = [
{ command = "${my.launch.term} app weechat ${pkgs.weechat}/bin/weechat"; always = false; notification = false; }
{ command = "${my.pwarun} discord https://discord.com/app";always = false; notification = false; }
{ command = "${my.pwarun} element https://app.element.io";always = false; notification = false; }
{ command = "${my.pwarun} discourse https://discourse.nixos.org/latest";always = false; notification = false; }
{ command = "${pkgsUnstable.signal-desktop}";always = false; notification = false; }
];
xsession.windowManager.i3.config.window.commands = [{ criteria = { class = "^URxvt$"; instance = "^weechat$"; }; command = "layout tabbed"; }];
xsession.windowManager.i3.config.assigns."11" = [
{ class = "^discord$"; instance = "^discord$"; }
{ class = "^element$"; instance = "^element$"; }
{ class = "^discourse$"; instance = "^discourse$"; }
{ class = "^URxvt$"; instance = "^weechat$"; }
{ class = "^Signal$"; instance = "^signal$"; }
];
}

0 comments on commit 366a91f

Please sign in to comment.