diff --git a/morph/grid/local/grid.nix b/morph/grid/local/grid.nix index b909c60395c82e7e57cf6dd301039a07a2332125..52eba2ca269ab99757c77ce347d20ae56200a03b 100644 --- a/morph/grid/local/grid.nix +++ b/morph/grid/local/grid.nix @@ -27,7 +27,8 @@ let ../../../nixos/modules/deployment.nix # Give it a good SSH configuration. ../../../nixos/modules/ssh.nix - gridlib.hardware-virtual + # Configure things specific to the virtualisation environment. + gridlib.hardware-vagrant ]; services.private-storage.sshUsers = ssh-users; diff --git a/morph/lib/default.nix b/morph/lib/default.nix index bf25e5a58d04d148296bffef48acc4e4e125684b..266f326a9ae4adf76877d64667e88c936cd531fd 100644 --- a/morph/lib/default.nix +++ b/morph/lib/default.nix @@ -5,7 +5,7 @@ base = import ./base.nix; hardware-aws = import ./issuer-aws.nix; - hardware-virtual = import ./hardware-virtual.nix; + hardware-vagrant = import ./hardware-vagrant.nix; issuer = import ./issuer.nix; customize-issuer = import ./customize-issuer.nix; diff --git a/morph/lib/hardware-virtual.nix b/morph/lib/hardware-vagrant.nix similarity index 100% rename from morph/lib/hardware-virtual.nix rename to morph/lib/hardware-vagrant.nix