65 lines
1.7 KiB
Nix
65 lines
1.7 KiB
Nix
{
|
|
description = "Testing mastodon configurations";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:radvendii/nixpkgs/nixos_rebuild_tests";
|
|
};
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
|
|
nixosModules = {
|
|
interactive-vm = import ./interactive-vm.nix;
|
|
mastodon = import ./mastodon.nix;
|
|
mastodon-vm = import ./mastodon-vm.nix;
|
|
peertube = import ./peertube.nix;
|
|
peertube-vm = import ./peertube-vm.nix;
|
|
pixelfed = import ./pixelfed.nix;
|
|
pixelfed-vm = import ./pixelfed-vm.nix;
|
|
garage = import ./garage.nix;
|
|
};
|
|
|
|
nixosConfigurations = {
|
|
mastodon = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = with self.nixosModules; [ interactive-vm mastodon mastodon-vm garage ];
|
|
};
|
|
|
|
peertube = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = with self.nixosModules; [ interactive-vm peertube peertube-vm garage ];
|
|
};
|
|
|
|
pixelfed = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = with self.nixosModules; [ interactive-vm pixelfed pixelfed-vm garage ];
|
|
};
|
|
|
|
all = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = with self.nixosModules; [
|
|
interactive-vm
|
|
peertube peertube-vm
|
|
pixelfed pixelfed-vm
|
|
mastodon mastodon-vm
|
|
garage
|
|
];
|
|
};
|
|
};
|
|
|
|
checks.${system} = {
|
|
mastodon-garage = import ./tests/mastodon-garage.nix { inherit pkgs self; };
|
|
pixelfed-garage = import ./tests/pixelfed-garage.nix { inherit pkgs self; };
|
|
};
|
|
|
|
devShells.${system}.default = pkgs.mkShell {
|
|
inputs = with pkgs; [
|
|
nil
|
|
];
|
|
};
|
|
};
|
|
}
|