From c8bf78999aa50596e9ee6d5240ee2666ab9eb8d1 Mon Sep 17 00:00:00 2001 From: Jan-Bulthuis Date: Wed, 11 Jun 2025 17:21:19 +0200 Subject: [PATCH] Added test VM --- hosts/vm-test/configuration.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 hosts/vm-test/configuration.nix diff --git a/hosts/vm-test/configuration.nix b/hosts/vm-test/configuration.nix new file mode 100644 index 0000000..8c9c928 --- /dev/null +++ b/hosts/vm-test/configuration.nix @@ -0,0 +1,19 @@ +{ + lib, + pkgs, + config, + ... +}: + +{ + # State version + system.stateVersion = "24.11"; + + # Machine hostname + networking.hostName = "vm-test"; + + # Enabled modules + modules = { + profiles.vm.enable = true; + }; +}