30 lines
488 B
Nix
30 lines
488 B
Nix
|
# SPDX-FileCopyrightText: 2020-2024 Simon Bruder <simon@sbruder.de>
|
||
|
#
|
||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
./network.nix
|
||
|
../../modules
|
||
|
];
|
||
|
|
||
|
networking.hostName = "hyper";
|
||
|
|
||
|
system.stateVersion = "23.11";
|
||
|
|
||
|
virtualisation.libvirtd = {
|
||
|
enable = true;
|
||
|
qemu = {
|
||
|
package = pkgs.qemu_kvm;
|
||
|
ovmf.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
virtiofsd
|
||
|
];
|
||
|
}
|