summaryrefslogtreecommitdiff
path: root/modules/nixos/defaults/nix.nix
blob: e55faf4cfc317c29033fe9125bbb08b1ae4b944f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, ... }:
{
  nix = {
    channel.enable = lib.mkDefault false;
    settings.trusted-users = [
      "root"
      "@wheel"
    ];
  };

  nixpkgs.config.allowAliases = false;
}