Just so there is a backup

This commit is contained in:
2024-11-18 09:11:55 +02:00
parent 85ecb7b4a0
commit 4984e0a3ed
34 changed files with 1830 additions and 152 deletions
@@ -0,0 +1,24 @@
{ lib, config, pkgs, options, azos-utils, ... }:
let
isEnabled = config.azos.suites.station.enable && config.azos.mail.enable;
in
{
options.azos.mail.enable = (azos-utils.mkFeatureEnableOption {
description = "Enables Mail installation.";});
options.azos.mail.accounts = lib.mkOption{
default = [];
type = lib.types.list;
description = "List of accounts.";
};
imports = [
];
config = lib.mkIf isEnabled {
home.packages = with pkgs; [pkgs pkgs];
# home.packages = [#TODO THIS];
};
}