System/applications/emacs.nix

8 lines
130 B
Nix

{ config, pkgs, unstable, ... }:
{
# Install emacs
environment.systemPackages = with pkgs; [
unstable.emacsPgtkGcc
];
}