2023-06-23 06:22:34 +02:00
|
|
|
{
|
|
|
|
description = "SelfHostBlocks module";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
sops-nix.url = "github:Mic92/sops-nix";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = inputs@{ self, nixpkgs, sops-nix, ... }: {
|
|
|
|
nixosModules.default = { config, ... }: {
|
|
|
|
imports = [
|
|
|
|
modules/backup.nix
|
|
|
|
modules/haproxy.nix
|
|
|
|
modules/home-assistant.nix
|
2023-07-01 19:12:36 +02:00
|
|
|
modules/jellyfin.nix
|
|
|
|
modules/monitoring.nix
|
2023-06-23 06:22:34 +02:00
|
|
|
modules/nextcloud-server.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
# templates.default = {}; Would be nice to have a template
|
|
|
|
};
|
|
|
|
}
|