1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00
Stefan Ellmauthaler 504596d053 added communication software - jitsi,zoom,skyp in homemanager
Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@gmail.com>
2021-10-02 16:26:33 +02:00

45 lines
739 B
Nix

{ pkgs, lib, ... }:
{
imports =
[
./polybar.nix
./dunst.nix
./zsh.nix
./nextcloud.nix
];
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;
automount = true;
notify = true;
tray = "auto";
};
blueman-applet.enable = true;
network-manager-applet.enable = true ;
gnome-keyring = {
enable = true;
components = [ "pkcs11" "secrets" "ssh" ];
};
};
programs.home-manager = {
enable = true;
};
}