nixos-config/base/gui-programs.nix
2021-07-29 11:16:45 +02:00

29 lines
535 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
feh
gimp
gnome.nautilus
imagemagick
mpv
pavucontrol
thunderbird
zathura
unstable.discord
unstable.firefox
unstable.element-desktop
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;
}