Initial commit
It begins...
This commit is contained in:
commit
28ccec9704
24 changed files with 2721 additions and 0 deletions
45
home/modules/emacs.nix
Normal file
45
home/modules/emacs.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{ pkgs, lib, ... }:
|
||||
|
||||
let
|
||||
# doom-emacs = pkgs.callPackage (builtins.fetchTarball {
|
||||
# url = https://github.com/vlaci/nix-doom-emacs/archive/master.tar.gz;
|
||||
# }) {
|
||||
# doomPrivateDir = ./doom.d; # Directory containing your config.el init.el
|
||||
# # and packages.el files
|
||||
# };
|
||||
in {
|
||||
imports = [ ./lib/cloneRepo.nix ];
|
||||
|
||||
# home.packages = [ doom-emacs ];
|
||||
# home.file.".emacs.d/init.el".text = ''
|
||||
# (load "default.el")
|
||||
# '';
|
||||
#
|
||||
|
||||
home.packages = [
|
||||
# haskellPackages.Agda BROKEN
|
||||
];
|
||||
|
||||
programs.emacs.enable = true;
|
||||
home.file.".doom.d".source = ./doom.d;
|
||||
|
||||
impure.clonedRepos = {
|
||||
orgClubhouse = {
|
||||
github = "glittershark/org-clubhouse";
|
||||
path = "code/org-clubhouse";
|
||||
};
|
||||
|
||||
doomEmacs = {
|
||||
github = "hlissner/org-clubhouse";
|
||||
path = ".emacs.d";
|
||||
after = ["orgClubhouse"];
|
||||
onClone = "bin/doom install";
|
||||
};
|
||||
};
|
||||
|
||||
# Notes
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
tray = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue