Files
Nixos/modules/system/options/apps/dev.nix
T
2026-02-01 14:59:22 +01:00

22 lines
266 B
Nix

{
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; [
gcc
];
};
}