clan-core/clanModules/flake-module.nix
a-kenji 105209cfb9
All checks were successful
checks / test (pull_request) Successful in 2m40s
checks-impure / test (pull_request) Successful in 1m34s
clanModules: add waypipe service
2024-02-10 12:32:06 +01:00

20 lines
461 B
Nix

{ inputs, ... }: {
flake.clanModules = {
diskLayouts = {
imports = [
./diskLayouts.nix
inputs.disko.nixosModules.default
];
};
borgbackup = ./borgbackup.nix;
deltachat = ./deltachat.nix;
moonlight = ./moonlight.nix;
sunshine = ./sunshine.nix;
syncthing = ./syncthing.nix;
xfce = ./xfce.nix;
zt-tcp-relay = ./zt-tcp-relay.nix;
localsend = ./localsend.nix;
waypipe = ./waypipe.nix;
};
}