added virtualisation

This commit is contained in:
Nicole Dresselhaus 2025-06-11 20:50:48 +02:00
parent 5921272649
commit fcab24ae8d

View File

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
imports = [ ./hardware ]; # bindet die auto-generierte HW-Datei ein
imports = [ ./hardware/hardware-configuration.nix ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
@ -67,4 +67,12 @@
environment.systemPackages = with pkgs; [ git vim zfs ];
#### Virtualisation
virtualisation.docker.enable = true;
virtualisation.libvirtd.enable = true;
users.groups.docker.members = [ "nicole" ];
programs.virt-manager.enable = true;
}