nixos/modules/dev/nil.nix
2023-08-06 17:57:50 +03:00

17 lines
282 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.dev.nil;
in
{
options.modules.dev.nil = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
nil
alejandra
];
};
}