Add description field to function-schema

This commit is contained in:
Qubasa
2024-05-02 14:34:58 +02:00
parent b0336e13b1
commit 142a6036fb
35 changed files with 45 additions and 28 deletions

View File

@@ -1,28 +1,34 @@
{ inputs, ... }:
{
flake.clanModules = {
diskLayouts = {
disk-layouts = {
imports = [
./diskLayouts.nix
./disk-layouts
inputs.disko.nixosModules.default
];
};
borgbackup = ./borgbackup.nix;
ergochat = ./ergochat.nix;
borgbackup = ./borgbackup;
ergochat = ./ergochat;
deltachat = ./deltachat;
graphical = ./graphical.nix;
localbackup = ./localbackup.nix;
localsend = ./localsend.nix;
matrix-synapse = ./matrix-synapse.nix;
moonlight = ./moonlight.nix;
sshd = ./sshd.nix;
sunshine = ./sunshine.nix;
graphical = ./graphical;
localbackup = ./localbackup;
localsend = ./localsend;
matrix-synapse = ./matrix-synapse;
moonlight = ./moonlight;
sshd = ./sshd;
sunshine = ./sunshine;
syncthing = ./syncthing;
root-password = ./root-password;
thelounge = ./thelounge.nix;
vm-user = ./vm-user.nix;
xfce = ./xfce.nix;
xfce-vm = ./xfce-vm.nix;
zt-tcp-relay = ./zt-tcp-relay.nix;
thelounge = ./thelounge;
vm-user = ./vm-user;
xfce = ./xfce;
xfce-vm = {
imports = [
./vm-user
./graphical
./xfce-vm
];
};
zt-tcp-relay = ./zt-tcp-relay;
};
}