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; + }