build(nix): Removed nixpkgs as a dependency.

This commit is contained in:
Spencer Brower
2022-09-02 15:38:25 -04:00
parent e6800461e1
commit 760e65a789
2 changed files with 2 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
{
description = "A very basic flake";
outputs = { self, nixpkgs }: {
outputs = { self }: {
nixosModules.vagrant = { ... }: { imports = [ ./nixosModules/vagrant.nix ]; };
};
}