move to babel emacs configuration

This commit is contained in:
2022-03-18 06:24:13 +05:30
parent 71774333bb
commit d8b0b372f8
9 changed files with 510 additions and 379 deletions

View File

@@ -4,16 +4,17 @@
, fetchurl
, fetchFromGitHub
, emacsGcc
, config ? null
, conf ? null
, ...
}:
assert (config != null);
assert (conf != null);
emacsWithPackagesFromUsePackage {
config = config;
config = conf;
package = emacsGcc;
alwaysEnsure = true;
alwaysTangle = true;
extraEmacsPackages = epkgs: with epkgs; [
use-package
tsc

View File

@@ -2,5 +2,5 @@ final: prev: {
mpd_discord_richpresence = prev.callPackage ./mpd-rpc { };
customscripts = prev.callPackage ./customscripts { };
gruvbox-icons = prev.callPackage ./gruvbox-icons { };
mymacs = c: prev.callPackage ./emacs { config = c; };
mymacs = c: prev.callPackage ./emacs { conf = c; };
}