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; + }; +}