1
0
Fork 0
selfhostblocks/flake.nix

28 lines
662 B
Nix
Raw Normal View History

2023-06-22 21:22:34 -07: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 = [
2023-08-09 20:39:32 -07:00
modules/authelia.nix
2023-06-22 21:22:34 -07:00
modules/backup.nix
2023-08-25 09:51:20 -07:00
modules/hledger.nix
2023-06-22 21:22:34 -07:00
modules/home-assistant.nix
2023-07-01 10:12:36 -07:00
modules/jellyfin.nix
2023-08-09 20:46:56 -07:00
modules/ldap.nix
2023-07-01 10:12:36 -07:00
modules/monitoring.nix
2023-06-22 21:22:34 -07:00
modules/nextcloud-server.nix
2023-08-09 20:46:56 -07:00
modules/nginx.nix
modules/ssl.nix
2023-06-22 21:22:34 -07:00
];
};
# templates.default = {}; Would be nice to have a template
};
}