10 lines
153 B
Nix
10 lines
153 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
networking.hostName = "exoplasim";
|
||
|
|
||
|
imports = [ ../base.nix ];
|
||
|
|
||
|
# HARDWARE SPECIFIC
|
||
|
services.qemuGuest.enable = true;
|
||
|
}
|