clan-core/clanModules/flake-module.nix

30 lines
748 B
Nix
Raw Normal View History

2024-03-17 18:48:49 +00:00
{ inputs, ... }:
{
2023-09-18 17:22:45 +00:00
flake.clanModules = {
diskLayouts = {
imports = [
./diskLayouts.nix
inputs.disko.nixosModules.default
];
};
borgbackup = ./borgbackup.nix;
2024-04-02 09:23:34 +00:00
ergochat = ./ergochat.nix;
2024-04-17 16:26:37 +00:00
deltachat = ./deltachat;
2024-04-02 09:01:00 +00:00
graphical = ./graphical.nix;
localbackup = ./localbackup.nix;
localsend = ./localsend.nix;
2024-03-19 13:20:56 +00:00
matrix-synapse = ./matrix-synapse.nix;
2024-01-12 14:55:53 +00:00
moonlight = ./moonlight.nix;
2024-04-02 09:01:00 +00:00
sshd = ./sshd.nix;
2024-01-17 09:33:42 +00:00
sunshine = ./sunshine.nix;
2024-04-17 16:26:37 +00:00
syncthing = ./syncthing;
2024-04-17 10:52:04 +00:00
root-password = ./root-password;
2024-04-02 09:01:00 +00:00
thelounge = ./thelounge.nix;
2024-03-12 15:43:31 +00:00
vm-user = ./vm-user.nix;
2024-04-02 09:01:00 +00:00
waypipe = ./waypipe.nix;
2024-01-12 14:55:53 +00:00
xfce = ./xfce.nix;
xfce-vm = ./xfce-vm.nix;
2024-01-12 13:25:31 +00:00
zt-tcp-relay = ./zt-tcp-relay.nix;
2023-09-18 17:22:45 +00:00
};
}