Add of dev dependencies

This commit is contained in:
2026-02-01 14:59:03 +01:00
parent 8d727d5bd4
commit 753d417736
3 changed files with 29 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.os.shell.dev;
in
{
options.os.shell.dev = {
enable = mkEnableOption "System git service";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
llvm
];
};
}