nixos-config/base/gui-programs.nix

16 lines
234 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
flameshot
2021-04-17 03:38:05 +02:00
pavucontrol
2021-04-16 21:33:48 +02:00
slack
];
networking.networkmanager.enable = true;
programs.nm-applet.enable = true;
}