nixfiles/profiles/base-darwin/nix.nix
ChaotiCryptidz 6049346065
pkgs
2022-03-09 20:00:44 +00:00

19 lines
405 B
Nix

{ inputs, pkgs, config, lib, ... }: {
nix = {
package = pkgs.nixFlakes;
useDaemon = true;
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
extraOptions = ''
experimental-features = nix-command flakes
'';
};
nixpkgs = {
config = { allowUnfree = true; };
overlays = [
(import ../../overlay)
inputs.musicutil.overlay
inputs.deploy-rs.overlay
];
};
}