15 lines
311 B
Nix
15 lines
311 B
Nix
|
{ config, modulesPath, lib, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
"${modulesPath}/profiles/qemu-guest.nix"
|
||
|
];
|
||
|
|
||
|
config = {
|
||
|
boot.growPartition = true;
|
||
|
boot.loader.grub.device = "/dev/vda";
|
||
|
|
||
|
fileSystems."/" = lib.mkDefault { device = "/dev/vda1"; fsType = "ext4"; };
|
||
|
|
||
|
networking.useNetworkd = true;
|
||
|
};
|
||
|
}
|