feat: initial configuration for galene

This commit is contained in:
Ranomier 2025-06-30 21:41:39 +02:00
parent 0b6177320f
commit ab009108dd
5 changed files with 29 additions and 11 deletions

View file

@ -1,7 +1,22 @@
{rootPath, ...}: {
imports = [
./boot.nix
./hardware-configuration.nix
(rootPath + /system_profiles/server.nix)
];
services.galene = {
enable = true;
insecure = true;
};
users = let
username = "root";
in {
users."${username}".openssh.authorizedKeys.keyFiles = [
(rootPath + /certificates/id_ed25519_srv-videoconf.pub)
];
};
}