eve #1

Merged
jan-leila merged 3 commits from eve into main 2025-06-01 00:47:02 +00:00
Showing only changes of commit 69b8f5ceca - Show all commits

View file

@ -1,6 +1,7 @@
{
pkgs,
lib,
config,
osConfig,
...
}: let
@ -72,5 +73,14 @@ in {
programs = {
# Let Home Manager install and manage itself.
home-manager.enable = true;
openssh = {
hostKeys = [
{
type = "ed25519";
path = "${config.home.username}_${osConfig.networking.hostName}_ed25519";
}
];
};
};
}