Antoine Martin
bdd0748620
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. :)
29 lines
481 B
Nix
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;
|
|
}
|