From fcab24ae8db6066fde5cff36df85ecd558ad1c90 Mon Sep 17 00:00:00 2001 From: Nicole Dresselhaus Date: Wed, 11 Jun 2025 20:50:48 +0200 Subject: [PATCH] added virtualisation --- configuration.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 7a5bd5d..b1dd1d6 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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; + }