diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 44c58c7..5febee2 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -156,6 +156,7 @@ tree-sitter unzip usbutils + vencord vim waybar wdisplays @@ -183,6 +184,7 @@ enableSSHSupport = true; pinentryPackage = pkgs.pinentry-qt; }; + virt-manager.enable = true; wireshark.enable = true; nix-ld = { enable = true; @@ -200,6 +202,7 @@ }; virtualisation = { + libvirtd.enable = true; virtualbox = { host.enable = true; guest = { diff --git a/modules/nixos/main-user.nix b/modules/nixos/main-user.nix index 6b92065..6a883fb 100644 --- a/modules/nixos/main-user.nix +++ b/modules/nixos/main-user.nix @@ -23,7 +23,7 @@ in { users.users.${cfg.username} = { isNormalUser = true; initialPassword = "12345"; - extraGroups = ["docker" "input" "networkmanager" "wheel" "vboxusers"]; + extraGroups = ["docker" "input" "networkmanager" "wheel" "vboxusers" "libvirtd"]; description = "Stefan"; shell = pkgs.zsh; };