use revamped data model

This commit is contained in:
Kiara Grouwstra 2025-06-30 20:08:15 +02:00
parent 7906e9fc92
commit 824676b2e7
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
4 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{
_class = "fediversity";
config = {
applications = {
# mastodon.module = import ./mastodon.nix;
};
};
}

View file

@ -0,0 +1,10 @@
{
_class = "fediversity";
config = {
providers = {
qemu = import ./qemu.nix;
ssh-host = import ./ssh-host.nix;
};
};
}

View file

@ -0,0 +1,11 @@
{
modulesPath,
...
}:
{
_class = "nixos";
imports = [
"${modulesPath}/profiles/qemu-guest.nix"
];
}

View file

@ -0,0 +1,8 @@
{
_class = "nixos";
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
}