feat: add mailserver

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-01-16 18:16:36 +01:00
parent 2c4db22827
commit ccde7ba703
Signed by: lander
GPG key ID: 0142722B4B0C536F
9 changed files with 212 additions and 19 deletions

View file

@ -24,6 +24,14 @@
# neovim
nixvim.url = "git+https://codeberg.org/landervdb/nixvim.git";
# mailserver
nixos-mailserver = {
url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-24.11";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
};
outputs =
@ -52,11 +60,11 @@
};
# servers
cloud-1 = nixpkgs.lib.nixosSystem {
mail-01 = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
specialArgs = { inherit inputs outputs; };
modules = [
./hosts/cloud-1
./hosts/mail-01
];
};
};