nixos-config/base/gui-programs.nix
Antoine Martin bdd0748620 flake: switch back entire config to unstable
Mixing stable and unstable brought me weird problems, so I'm switching
back to unstable entirely until it breaks hard enough to convince me to
go back to stable. :)
2021-08-19 23:34:41 +02:00

29 lines
481 B
Nix

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