Packages build!

This commit is contained in:
2024-09-07 00:24:08 +03:00
parent 4d29cc73b2
commit f8a16189f0
30 changed files with 1584 additions and 446 deletions
@@ -0,0 +1,13 @@
{ lib, config, pkgs, azos-utils, ... }:
let
isEnabled =
config.azos.git.enable &&
config.azos.suites.base.enable;
in
{
options.azos.git.enable = (azos-utils.mkFeatureEnableOption {});
config = lib.mkIf isEnabled {
programs.git.enable = true;
};
}