Apply nixfmt
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ emacs, runCommand, ... }:
|
||||
runCommand "default.el" {} ''
|
||||
{ emacs, runCommand, ... }:
|
||||
runCommand "default.el" { } ''
|
||||
cp ${./config.org} $TMPDIR/config.org
|
||||
cd $TMPDIR
|
||||
${emacs}/bin/emacs --batch -Q \
|
||||
@@ -7,4 +7,4 @@ runCommand "default.el" {} ''
|
||||
-f org-babel-tangle
|
||||
|
||||
mv config.el $out
|
||||
''
|
||||
''
|
||||
|
||||
@@ -3,7 +3,7 @@ let
|
||||
emacs = pkgs.emacsWithPackagesFromUsePackage {
|
||||
package = pkgs.emacs-unstable;
|
||||
config = ./config.org;
|
||||
defaultInitFile = pkgs.callPackage ./config.nix {};
|
||||
defaultInitFile = pkgs.callPackage ./config.nix { };
|
||||
|
||||
alwaysEnsure = true;
|
||||
alwaysTangle = true;
|
||||
@@ -40,9 +40,9 @@ in
|
||||
|
||||
home-manager.users.alex = {
|
||||
home.sessionVariables = {
|
||||
EDITOR = "${e}/bin/e $@";
|
||||
VISUAL = "${e}/bin/e $@";
|
||||
TIG_EDITOR = "${e}/bin/e $@";
|
||||
EDITOR = "${e}/bin/e $@";
|
||||
VISUAL = "${e}/bin/e $@";
|
||||
TIG_EDITOR = "${e}/bin/e $@";
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
|
||||
Reference in New Issue
Block a user