nixos-config/base/gui-programs.nix

25 lines
426 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 20:39:01 +02:00
emacsPgtkGcc
2021-04-17 03:53:47 +02:00
feh
2021-04-16 21:33:48 +02:00
firefox
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-18 14:46:12 +02:00
sqlite # needed for org-roam
2021-04-18 14:46:59 +02:00
zathura
2021-04-18 14:46:12 +02:00
];
fonts.fonts = with pkgs; [
input-fonts
emacs-all-the-icons-fonts
2021-04-16 21:33:48 +02:00
];
networking.networkmanager.enable = true;
programs.nm-applet.enable = true;
2021-04-18 14:46:12 +02:00
nixpkgs.config.input-fonts.acceptLicense = true;
2021-04-16 21:33:48 +02:00
}