systemd: added groups kvm, render

they need to exist according to the README of systemd

authored by

Eric Wolf and committed by
Tuomas Tynkkynen
7f8b1dd3 24cb9ddf

+6
+2
nixos/modules/config/users-groups.nix
··· 524 utmp.gid = ids.gids.utmp; 525 adm.gid = ids.gids.adm; 526 input.gid = ids.gids.input; 527 }; 528 529 system.activationScripts.users = stringAfter [ "stdio" ]
··· 524 utmp.gid = ids.gids.utmp; 525 adm.gid = ids.gids.adm; 526 input.gid = ids.gids.input; 527 + kvm.gid = ids.gids.kvm; 528 + render.gid = ids.gids.render; 529 }; 530 531 system.activationScripts.users = stringAfter [ "stdio" ]
+4
nixos/modules/misc/ids.nix
··· 326 cfssl = 299; 327 cassandra = 300; 328 qemu-libvirtd = 301; 329 330 # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! 331 ··· 612 cfssl = 299; 613 cassandra = 300; 614 qemu-libvirtd = 301; 615 616 # When adding a gid, make sure it doesn't match an existing 617 # uid. Users and groups with the same name should have equal
··· 326 cfssl = 299; 327 cassandra = 300; 328 qemu-libvirtd = 301; 329 + # kvm = 302; # unused 330 + # render = 303; # unused 331 332 # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! 333 ··· 614 cfssl = 299; 615 cassandra = 300; 616 qemu-libvirtd = 301; 617 + kvm = 302; # default udev rules from systemd requires these 618 + render = 303; # default udev rules from systemd requires these 619 620 # When adding a gid, make sure it doesn't match an existing 621 # uid. Users and groups with the same name should have equal