10 lines
167 B
Nix
10 lines
167 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
/etc/nixos/hardware-configuration.nix
|
|
../../server/configuration.nix
|
|
];
|
|
networking.hostName = "vm1";
|
|
}
|