14 lines
313 B
Nix
14 lines
313 B
Nix
{ config, lib, modulesPath, ... }:
|
|
{
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.devices = [ "/dev/vda" ];
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
}
|