summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2020-04-09 14:12:50 +0200
committerAlan Pearce2020-04-09 14:12:50 +0200
commit430a1ab35f73aab44eb9f2ac13d01a98d7fb3fec (patch)
treefcd93d544f6a364fe5887bbb7e889735d48850ee /system
parent25975c5d2ad63ef95a024ab83dd57af6870e835d (diff)
downloadnixfiles-430a1ab35f73aab44eb9f2ac13d01a98d7fb3fec.tar.lz
nixfiles-430a1ab35f73aab44eb9f2ac13d01a98d7fb3fec.tar.zst
nixfiles-430a1ab35f73aab44eb9f2ac13d01a98d7fb3fec.zip
Add user to video group
Diffstat (limited to 'system')
-rw-r--r--system/settings/configuration/user.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/settings/configuration/user.nix b/system/settings/configuration/user.nix
index def1a765..e152a91b 100644
--- a/system/settings/configuration/user.nix
+++ b/system/settings/configuration/user.nix
@@ -3,7 +3,7 @@
 { users.extraUsers.alan = {
     description = "Alan Pearce";
     isNormalUser = true;
-    extraGroups = [ "audio" "wheel" "lp" "adbusers" "docker" "nitrokey" "dialout" "networkmanager" ];
+    extraGroups = [ "audio" "wheel" "lp" "adbusers" "docker" "nitrokey" "dialout" "networkmanager" "video" ];
     shell = "/run/current-system/sw/bin/zsh";
     initialPassword = "password";
     home = "/home/alan";