nixos/modules/dev/nil.nix
2024-08-01 16:24:09 +04:00

16 lines
280 B
Nix

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