Install discord and telegram

This commit is contained in:
Valentin Brandl 2022-02-18 14:34:01 +01:00
parent 8afcad1f58
commit a6848287b9
3 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,7 @@ user:
imports = [ imports = [
./bat.nix ./bat.nix
./direnv.nix ./direnv.nix
./discord.nix
./dunst.nix ./dunst.nix
./element.nix ./element.nix
./feh.nix ./feh.nix
@ -27,6 +28,7 @@ user:
./rofi.nix ./rofi.nix
./rust.nix ./rust.nix
./signal.nix ./signal.nix
./telegram.nix
./tmux.nix ./tmux.nix
./xdg.nix ./xdg.nix
./zathura.nix ./zathura.nix

5
home/discord.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
discord
];
}

5
home/telegram.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
tdesktop
];
}