summaryrefslogtreecommitdiff
path: root/modules/darwin/base/default.nix
blob: 7e6f3bd836e2141116e2f8f140048eb3d54188cd (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, lib, ... }:
let
  cfg = config.base;
in
{
  imports = [
    ./programs.nix
  ];

  config = lib.mkIf cfg.enable { services.nix-daemon.enable = true; };
}