18 lines
342 B
Nix
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";
|
|
}
|