about summary refs log tree commit diff
path: root/modules/nix/default.nix
blob: b2ab99a2435eb11ed259c7cb305cc5b5006b3a5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ config, pkgs, options, lib, ... }:

let
  # Most of the standard Darwin-detection methods cause infinite recursion.
  isDarwin = options.environment ? "darwinConfig";

in {
  nix.nixPath = [
    "nixos-config=/run/current-system/nixlib/sys/${config.networking.hostName}.nix"
    "/run/current-system/nixlib"
  ];

  nix.trustedUsers = [ "@wheel" ];

  system.extraSystemBuilderCmds = ''
    ln -s ${lib.cleanSource ../..} $out/nixlib
  '';

  nixpkgs.overlays =
    let
      inherit (builtins) attrNames readDir;
      dir = ../../nixpkgs-overlays;
      names = attrNames (readDir dir);
    in
      map (o: import "${dir}/${o}") names;

  services = lib.optionalAttrs isDarwin
    { nix-daemon.enable = true; };

  nix.package = pkgs.nixUnstable;

  nix.daemonNiceLevel = 2;
}