about summary refs log tree commit diff
path: root/users/fcuny/desktop/emacs.nix
blob: 4a5083892b6dd72bc6b196110b0c1ecbd843f94f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, config, pkgs, ... }:

{
  programs = {
    emacs= {
      enable = true;
      package=unstable.emacsPgtkGcc;
    };
  };
}