8 lines
130 B
Nix
8 lines
130 B
Nix
|
{ config, pkgs, unstable, ... }:
|
||
|
{
|
||
|
# Install emacs
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
unstable.emacsPgtkGcc
|
||
|
];
|
||
|
}
|