System/applications/emacs.nix

8 lines
130 B
Nix
Raw Normal View History

2021-12-20 13:37:26 -05:00
{ config, pkgs, unstable, ... }:
{
# Install emacs
environment.systemPackages = with pkgs; [
unstable.emacsPgtkGcc
];
}