working flake build of neovim

This commit is contained in:
Noah Masur
2022-11-29 20:40:15 -07:00
parent dfacb580ae
commit b258a40181
2 changed files with 33 additions and 25 deletions

View File

@ -1,4 +1,4 @@
{ inputs, globals, ... }:
{ inputs, globals, overlays, ... }:
with inputs;
@ -22,7 +22,7 @@ darwin.lib.darwinSystem {
};
mailUser = globals.user;
networking.hostName = "noah-masur-mac";
nixpkgs.overlays = [ firefox-darwin.overlay ];
nixpkgs.overlays = [ firefox-darwin.overlay ] ++ overlays;
# Set registry to flake packages, used for nix X commands
nix.registry.nixpkgs.flake = nixpkgs;
}