Voronind : Add to libvirtd group.

This commit is contained in:
Dmitry Voronin 2024-03-29 14:40:33 +03:00
parent 62c003577e
commit 5ddc6c9637
2 changed files with 3 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ ... }: {
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
}

View file

@ -2,6 +2,7 @@
imports = [
./home/Voronind.nix
];
users.users.voronind = {
createHome = true;
description = "Dmitry Voronin";
@ -9,6 +10,7 @@
isNormalUser = true;
uid = 1000;
extraGroups = [
"libvirtd"
"networkmanager"
"video"
];