First Try

This commit is contained in:
Olaf Kolkman
2025-05-06 19:41:26 +02:00
commit fbd41a72f1
58 changed files with 7011 additions and 0 deletions

16
modules/shared/files.nix Normal file
View File

@ -0,0 +1,16 @@
{ 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;
};
}