1
Fork 0
nixos-system-config/systems/qemu-vm.nix
2023-06-18 22:52:24 +02:00

13 lines
238 B
Nix

{ config, pkgs, ... }:
{
imports = [
../sets/meta/sysadmin.nix
../packages/vim/package.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
time.timeZone = "Europe/Berlin";
}