This commit is contained in:
Henry Hiles 2025-10-17 13:56:14 -04:00
commit 49237cd86d
No known key found for this signature in database
15 changed files with 152 additions and 55 deletions

View file

@ -0,0 +1,10 @@
{
quad.matrix = {
enable = true;
domain = "polyphony.chat";
settings.well_known = {
support_email = "info@polyphony.chat";
support_mxid = null;
};
};
}

16
clients/nova/flori.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, ... }:
{
users = {
mutableUsers = true;
users.flori = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcXzWUeVwJN7iPxMT/1lhJySY4t6Z2/fH/GHVuzQFr6 cardno:32_241_564"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINBnstd9HyyIjfXWfGymWDcRlK9nZuqgTIcueiqPUDaQ star@starforge"
];
hashedPasswordFile = config.age.secrets."initialFloriPassword.age".path;
description = "Flori";
extraGroups = [ "wheel" ];
};
};
}

View file

@ -0,0 +1,7 @@
{
boot.kernelParams = [ "ip=dhcp" ];
boot.initrd.availableKernelModules = [
"virtio_pci"
"virtio_net"
];
}

View file

@ -0,0 +1,20 @@
{ config, ... }:
{
fileSystems."/".options = [ "x-systemd.device-timeout=0" ];
networking.firewall.allowedTCPPorts = [ 222 ];
boot = {
loader.grub.enable = false;
initrd = {
systemd = {
enable = true;
users.root.shell = "/bin/systemd-tty-ask-password-agent";
};
network.ssh = {
enable = true;
port = 222;
hostKeys = [ "/etc/ssh/ssh_host_ed25519_key_initrd" ];
authorizedKeys = config.users.users.ava.openssh.authorizedKeys.keys;
};
};
};
}