nixos-config/base/gui-programs.nix
Antoine Martin 1a0f0da28d base: use stable element-desktop
some problems with libX11 / glibc version prevent the unstable version
from opening links and other stuff, so let's roll that back
2021-08-08 00:09:19 +02:00

29 lines
526 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
element-desktop
feh
gimp
gnome.nautilus
imagemagick
mpv
pavucontrol
thunderbird
zathura
unstable.discord
unstable.firefox
unstable.slack
unstable.spotify
unstable.tdesktop
unstable.teams
];
networking.networkmanager.enable = true;
programs.nm-applet.enable = true;
programs.steam.enable = true;
# NOTE: needed for home emacs configuration
nixpkgs.config.input-fonts.acceptLicense = true;
}