summaryrefslogtreecommitdiff
path: root/modules/core/nix/nh.nix
blob: 5b5419277bf192a7b43f98a34f8f5e9aa7d31578 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ lib, config, ... }:
{
  config = lib.mkIf config.modules.nix.extend {
    programs.nh = {
      enable = true;
      clean.enable = false;
    };
  };
}