nixfiles/profiles/base-darwin/nix.nix
2022-12-04 16:10:00 +00:00

24 lines
404 B
Nix

{
inputs,
pkgs,
config,
...
}: {
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
];
};
}