summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorEric Wolf <ericwolf42@gmail.com>2018-08-15 22:10:31 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2018-08-25 05:18:53 +0300
commit7f8b1dd32f45463b2fce58e8f33f4ddffbaa1a76 (patch)
tree06c3eb61c2a5f990c9a7a074153b33ea0d6fa7e2 /nixos/modules/config
parent24cb9ddfc04e9f2056bd92235a92f0e55657e2fe (diff)
downloadnixlib-7f8b1dd32f45463b2fce58e8f33f4ddffbaa1a76.tar
nixlib-7f8b1dd32f45463b2fce58e8f33f4ddffbaa1a76.tar.gz
nixlib-7f8b1dd32f45463b2fce58e8f33f4ddffbaa1a76.tar.bz2
nixlib-7f8b1dd32f45463b2fce58e8f33f4ddffbaa1a76.tar.lz
nixlib-7f8b1dd32f45463b2fce58e8f33f4ddffbaa1a76.tar.xz
nixlib-7f8b1dd32f45463b2fce58e8f33f4ddffbaa1a76.tar.zst
nixlib-7f8b1dd32f45463b2fce58e8f33f4ddffbaa1a76.zip
systemd: added groups kvm, render
they need to exist according to the README of systemd
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/users-groups.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index ddec21b5f6e5..426e1666a814 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -524,6 +524,8 @@ in {
       utmp.gid = ids.gids.utmp;
       adm.gid = ids.gids.adm;
       input.gid = ids.gids.input;
+      kvm.gid = ids.gids.kvm;
+      render.gid = ids.gids.render;
     };
 
     system.activationScripts.users = stringAfter [ "stdio" ]