diff --git a/flake.lock b/flake.lock index 4c44876..5999137 100644 --- a/flake.lock +++ b/flake.lock @@ -1,24 +1,6 @@ { "nodes": { - "nixpkgs": { - "locked": { - "lastModified": 1661799568, - "narHash": "sha256-P3xXCyYfd6WzVC3anpb5ZvUeZ6vMttcs05OWGWvgc+E=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "c3e4dc4f6d23c7e41dda5ce98956c75c7779e2fa", - "type": "github" - }, - "original": { - "id": "nixpkgs", - "type": "indirect" - } - }, - "root": { - "inputs": { - "nixpkgs": "nixpkgs" - } - } + "root": {} }, "root": "root", "version": 7 diff --git a/flake.nix b/flake.nix index 0621eed..575585c 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,7 @@ { description = "A very basic flake"; - outputs = { self, nixpkgs }: { + outputs = { self }: { nixosModules.vagrant = { ... }: { imports = [ ./nixosModules/vagrant.nix ]; }; }; }