tvl-depot/system/modules/emacs.nix

24 lines
550 B
Nix
Raw Normal View History

2020-03-28 04:32:13 +01:00
{ config, pkgs, lib, ... }:
with lib;
{
options.programs.emacs.useGit = mkOption {
description = "Use emacs from git";
type = types.bool;
default = false;
};
config = {
nixpkgs.overlays = if config.programs.emacs.useGit then [] else [
(import (builtins.fetchTarball https://github.com/nix-community/emacs-overlay/archive/master.tar.gz))
];
environment.systemPackages = with pkgs; [
(if config.programs.emacs.useGit then emacsGit else emacs)
ripgrep
coreutils
fd
clang
];
};
}