nixfiles/profiles/base-darwin/nix.nix
ChaotiCryptidz 02f2146ac0
daemon
2022-03-09 20:00:29 +00:00

19 lines
399 B
Nix

{ inputs, 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
];
};
}