refactor: rename modules to nixosModules

This commit is contained in:
Romain Paquet 2026-01-27 14:36:11 +01:00
parent 2eb4dc3730
commit 7062c95697
24 changed files with 21 additions and 8 deletions

View file

@ -0,0 +1,12 @@
let
user = "u422292";
host = "${user}.your-storagebox.de";
in
{
programs.ssh.knownHosts = {
storagebox-ed25519 = {
hostNames = [ "[${host}]:23" ];
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIICf9svRenC/PLKIL9nk6K/pxQgoiFC41wTNvoIncOxs";
};
};
}