nixos/modules/dev/nil.nix
2023-08-06 11:48:01 +03:00

17 lines
284 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
nixpkgs-fmt
];
};
}