nixfiles/profiles/base-darwin/nix.nix

19 lines
399 B
Nix
Raw Normal View History

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