nixos-config/hosts/vm-test/configuration.nix

20 lines
220 B
Nix
Raw Normal View History

2025-06-11 17:21:19 +02:00
{
lib,
pkgs,
config,
...
}:
{
# State version
system.stateVersion = "24.11";
# Machine hostname
networking.hostName = "vm-test";
# Enabled modules
modules = {
profiles.vm.enable = true;
};
}