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; virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true; programs.virt-manager.enable = true;
} }

View file

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