Formatting
All checks were successful
/ test (push) Successful in 19m3s

This commit is contained in:
Andrea Ciceri 2024-11-04 21:19:55 +01:00
parent 939f79f04d
commit dd626c2fc0
Signed by: aciceri
SSH key fingerprint: SHA256:/AagBweyV4Hlfg9u092n8hbHwD5fcB6A3qhDiDA65Rg

View file

@ -51,17 +51,18 @@ in
en_US-large en_US-large
it_IT it_IT
]); ]);
home.activation = { home.activation.cloneCcrEmacsFlake =
cloneCcrEmacsFlake = lib.hm.dag.entryAfter [ "writeBoundary" ] '' let
PATH=$PATH:${ path = lib.makeBinPath (
lib.makeBinPath (
with pkgs; with pkgs;
[ [
git git
openssh openssh
] ]
) );
} in
lib.hm.dag.entryAfter [ "writeBoundary" ] ''
PATH=$PATH:${path}
if [ ! -d "$HOME/.config/emacs" ]; then if [ ! -d "$HOME/.config/emacs" ]; then
mkdir "$HOME/.config/emacs" mkdir "$HOME/.config/emacs"
$DRY_RUN_CMD ln -s "$HOME/projects/aciceri/nixfleet/hmModules/emacs/init.el" "$HOME/.config/emacs/init.el" $DRY_RUN_CMD ln -s "$HOME/projects/aciceri/nixfleet/hmModules/emacs/init.el" "$HOME/.config/emacs/init.el"
@ -69,5 +70,4 @@ in
fi fi
$DRY_RUN_CMD ln -sfn ${treesitGrammars} "$HOME/.config/emacs/tree-sitter" $DRY_RUN_CMD ln -sfn ${treesitGrammars} "$HOME/.config/emacs/tree-sitter"
''; '';
};
} }