nixfiles/profiles/base/nix.nix
ChaotiCryptidz d89b38c29e Formatting.
2021-12-21 15:26:21 +00:00

20 lines
418 B
Nix

{ inputs, config, lib, ... }: {
nix = {
nixPath = [
"nixpkgs=${inputs.nixpkgs}"
];
extraOptions = lib.optionalString (lib.versionAtLeast config.nix.package.version "2.4") ''
experimental-features = nix-command flakes
'';
trustedUsers = [ "root" "@wheel" ];
};
nixpkgs = {
config = {
allowUnfree = true;
};
overlays = [
(import ../../overlay)
];
};
}