clan-core/clanModules/flake-module.nix

20 lines
461 B
Nix
Raw Normal View History

{ inputs, ... }: {
2023-09-18 17:22:45 +00:00
flake.clanModules = {
diskLayouts = {
imports = [
./diskLayouts.nix
inputs.disko.nixosModules.default
];
};
borgbackup = ./borgbackup.nix;
2024-01-12 14:55:53 +00:00
deltachat = ./deltachat.nix;
moonlight = ./moonlight.nix;
2024-01-17 09:33:42 +00:00
sunshine = ./sunshine.nix;
syncthing = ./syncthing.nix;
2024-01-12 14:55:53 +00:00
xfce = ./xfce.nix;
2024-01-12 13:25:31 +00:00
zt-tcp-relay = ./zt-tcp-relay.nix;
2024-01-17 09:33:42 +00:00
localsend = ./localsend.nix;
2024-02-10 11:30:25 +00:00
waypipe = ./waypipe.nix;
2023-09-18 17:22:45 +00:00
};
}