65 lines
1.6 KiB
Nix
65 lines
1.6 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 = {
|
|
## Fediversity modules
|
|
fediversity = import ./fediversity;
|
|
|
|
## VM-specific modules
|
|
interactive-vm = import ./vm/interactive-vm.nix;
|
|
mastodon-vm = import ./vm/mastodon-vm.nix;
|
|
peertube-vm = import ./vm/peertube-vm.nix;
|
|
pixelfed-vm = import ./vm/pixelfed-vm.nix;
|
|
};
|
|
|
|
nixosConfigurations = {
|
|
mastodon = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = with self.nixosModules; [ fediversity interactive-vm mastodon-vm ];
|
|
};
|
|
|
|
peertube = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = with self.nixosModules; [ fediversity interactive-vm peertube-vm ];
|
|
};
|
|
|
|
pixelfed = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = with self.nixosModules; [ fediversity interactive-vm pixelfed-vm ];
|
|
};
|
|
|
|
all = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = with self.nixosModules; [
|
|
fediversity
|
|
interactive-vm
|
|
peertube-vm
|
|
pixelfed-vm
|
|
mastodon-vm
|
|
];
|
|
};
|
|
};
|
|
|
|
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
|
|
];
|
|
};
|
|
};
|
|
}
|