bonfire/nixosConfigurations/default.nix
L-Nafaryus a4d8f5232e
Some checks failed
nix / check (push) Failing after 1m15s
flake: huge rework
flake: fix name conventions
flake: configurations -> lib.preconfiguredModules
flake.packages: rework platform dependency with convient module and
evaluator `lib.collectPackages`
packages.bonfire-docs: convient evaluators `nixosModulesDoc` and
`packagesDoc`
new: packages.postgresql: container image
new: packages.redis: container image
remove: packages.lego: needed dns provider was added to lego and nixpkgs
packages.netgen: broken
2024-07-18 15:49:05 +05:00

34 lines
657 B
Nix

{
lib,
inputs,
bonModules,
bonLib,
self,
...
}: {
astora = lib.nixosSystem {
system = "x86_64-linux";
modules = with inputs; [
home-manager.nixosModules.home-manager
bonModules.bonfire
./astora
];
specialArgs = {
inherit inputs;
bonPkgs = self.packages.x86_64-linux;
};
};
catarina = lib.nixosSystem {
system = "x86_64-linux";
modules = with inputs; [
nixos-mailserver.nixosModules.mailserver
sops-nix.nixosModules.sops
oscuro.nixosModules.oscuro
bonModules.bonfire
./catarina
];
specialArgs = {bonPkgs = self.packages.x86_64-linux;};
};
}