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