nixos-config/base/gui-programs.nix

23 lines
385 B
Nix
Raw Normal View History

2021-04-16 21:33:48 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
2021-04-17 03:37:21 +02:00
alacritty
discord
2021-04-17 03:53:47 +02:00
feh
2021-04-16 21:33:48 +02:00
firefox
2021-04-26 15:40:20 +02:00
gnome3.nautilus
2021-04-17 03:38:05 +02:00
pavucontrol
2021-04-16 21:33:48 +02:00
slack
2021-04-17 17:43:40 +02:00
spotify
2021-04-23 18:13:08 +02:00
tdesktop
2021-04-23 10:54:54 +02:00
teams
2021-04-18 14:46:59 +02:00
zathura
2021-04-18 14:46:12 +02:00
];
2021-04-16 21:33:48 +02:00
networking.networkmanager.enable = true;
programs.nm-applet.enable = true;
# NOTE: needed for home emacs configuration
2021-04-18 14:46:12 +02:00
nixpkgs.config.input-fonts.acceptLicense = true;
2021-04-16 21:33:48 +02:00
}