1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

added communication software - jitsi,zoom,skyp in homemanager

Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@gmail.com>
This commit is contained in:
Stefan Ellmauthaler 2021-10-02 16:26:33 +02:00
parent 36ec1b1d1d
commit 504596d053
2 changed files with 13 additions and 2 deletions

View File

@ -119,7 +119,8 @@
clang
keepassxc
gnome.libsecret
];
];
#services.emacs.enable = true;
#services.emacs.defaultEditor = true;

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
imports =
[
@ -10,8 +10,18 @@
home.packages = [
pkgs.htop
pkgs.pavucontrol
pkgs.jitsi-meet-electron
pkgs.skypeforlinux
pkgs.zoom-us
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"zoom"
"skypeforlinux"
];
services = {
udiskie = {
enable = true;