0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

nixos/*: convert straggler options to MD

This commit is contained in:
pennae 2022-08-30 14:18:54 +02:00
parent e04a09082e
commit 1d41cff3dc
31 changed files with 153 additions and 144 deletions

View file

@ -17,11 +17,11 @@ let
in {
options = {
virtualisation.kvmgt = {
enable = mkEnableOption ''
enable = mkEnableOption (lib.mdDoc ''
KVMGT (iGVT-g) VGPU support. Allows Qemu/KVM guests to share host's Intel integrated graphics card.
Currently only one graphical device can be shared. To allow users to access the device without root add them
to the kvm group: <literal>users.extraUsers.&lt;yourusername&gt;.extraGroups = [ "kvm" ];</literal>
'';
to the kvm group: `users.extraUsers.<yourusername>.extraGroups = [ "kvm" ];`
'');
# multi GPU support is under the question
device = mkOption {
type = types.str;