Initial commit

It begins...
This commit is contained in:
Griffin Smith 2020-03-27 23:32:13 -04:00
commit 28ccec9704
24 changed files with 2721 additions and 0 deletions

23
system/modules/emacs.nix Normal file
View file

@ -0,0 +1,23 @@
{ 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
];
};
}