1
Fork 0
nixos-system-config/systems/qemu-vm.nix
2023-07-01 15:08:00 +02:00

18 lines
342 B
Nix

{ ... }:
{
imports = [
./hardware/qemu-vm.nix
../sets/meta/sysadmin.nix
../packages/vim/package.nix
./common.nix
./persist/common.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
networking.hostId = "e78229f8";
time.timeZone = "Europe/Berlin";
}