feat: Added defaults to vagrant.

This commit is contained in:
Spencer Brower
2022-10-06 14:41:24 -04:00
parent cfcac9bff1
commit c0b246d311

View File

@@ -1,5 +1,6 @@
{ config, hostName ? "nixos", ... }: { { config, hostName ? "nixos", ... }: {
config = { config = mkMerge [
{
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
virtualisation.virtualbox.guest.enable = true; virtualisation.virtualbox.guest.enable = true;
@@ -40,8 +41,12 @@
workstation = false; workstation = false;
}; };
}; };
} /*// (mkIf services.laravel.enable { }
mkIf
services.laravel.enable
{
services.laravel.root = mkDefault /vagrant; services.laravel.root = mkDefault /vagrant;
services.laravel.domain = mkDefault (config.networking.hostName + ".local"); services.laravel.domain = mkDefault (config.networking.hostName + ".local");
})*/; }
];
} }