refactor: Organized modules like they are in NixOS/nixpkgs.

This commit is contained in:
Spencer Brower
2022-09-06 13:01:15 -04:00
parent aa3cff241c
commit 720d969c55
2 changed files with 1 additions and 1 deletions

View File

@@ -2,6 +2,6 @@
description = "A very basic flake";
outputs = { self }: {
nixosModules.vagrant = { ... }: { imports = [ ./nixosModules/vagrant.nix ]; };
nixosModules.vagrant = { ... }: { imports = [ ./nixos/modules/virtualisation/vagrant.nix ]; };
};
}