Olaf Kolkman fbd41a72f1
First Try
2025-05-06 19:41:26 +02:00

17 lines
311 B
Nix

{ pkgs, config, ... }:
# let
# githubPublicKey = "ssh-ed25519 AAAA...";
# in
{
# ".ssh/id_github.pub" = {
# text = githubPublicKey;
# };
# Initializes Emacs with org-mode so we can tangle the main config
".emacs.d/init.el" = {
text = builtins.readFile ../shared/config/emacs/init.el;
};
}