nixfiles/profiles/base-darwin/nix.nix

24 lines
404 B
Nix
Raw Normal View History

{
inputs,
pkgs,
config,
...
}: {
2022-03-09 19:40:03 +00:00
nix = {
2022-03-09 20:00:29 +00:00
package = pkgs.nixFlakes;
useDaemon = true;
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;};
2022-03-09 19:40:03 +00:00
overlays = [
(import ../../overlay)
inputs.musicutil.overlay
inputs.deploy-rs.overlay
];
};
}