added libvirtd

This commit is contained in:
k 2025-02-10 14:29:17 +00:00
parent a010c256c7
commit cedac03816
2 changed files with 5 additions and 2 deletions

View File

@ -35,7 +35,7 @@
k = {
isNormalUser = true;
description = "k";
extraGroups = ["networkmanager" "wheel"];
extraGroups = ["networkmanager" "wheel" "libvirtd"];
openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPKbKVe6gneJ9ghFih3bOeL++iDNPJNIMoZSdNMOsD0I k@laptop"];
packages = with pkgs; [zsh];
shell = pkgs.zsh;

View File

@ -14,7 +14,10 @@
defaults.email = "markers711@gmail.com";
};
virtualisation.docker = {enable = true;};
virtualisation = {
docker = {enable = true;};
libvirtd = {enable = true;};
};
services = {
openssh = {enable = true;};