summaryrefslogtreecommitdiff
path: root/modules/nixos/defaults/nix.nix
blob: 847f674da1c1693b564ae7b27c36245dc63d065f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, ... }:

{
  nix = {
    channel.enable = lib.mkDefault false;

    settings.trusted-users = [
      "@wheel"
    ];
  };

  nixpkgs.config.allowAliases = false;
}