feat: Added discord and slack to linux
This commit is contained in:
@@ -27,5 +27,7 @@ lib.optionalAttrs device.hasGui {
|
||||
./wezterm.nix
|
||||
./zathura.nix
|
||||
./zed.nix
|
||||
./discord.nix
|
||||
./slack.nix
|
||||
];
|
||||
}
|
||||
|
||||
10
home/apps/discord.nix
Normal file
10
home/apps/discord.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = lib.optionals pkgs.stdenv.isLinux [
|
||||
pkgs.discord
|
||||
pkgs.webcord
|
||||
];
|
||||
}
|
||||
9
home/apps/slack.nix
Normal file
9
home/apps/slack.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
home.packages = lib.optionals pkgs.stdenv.isLinux [
|
||||
pkgs.slack
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user