diff options
| author | tv <tv@krebsco.de> | 2015-11-07 19:24:25 +0100 |
|---|---|---|
| committer | tv <tv@krebsco.de> | 2015-11-07 19:24:25 +0100 |
| commit | f5e99acb83f469bd302e4c336edfa58320d60fc2 (patch) | |
| tree | 0b844c6a7519023a988c73fc3dee9c811f8c2d11 /tv/2configs/sub | |
| parent | 3c093a2196c7da4d455cc1c2320891260cd99883 (diff) | |
tv: mv user xr to sub
Diffstat (limited to 'tv/2configs/sub')
| -rw-r--r-- | tv/2configs/sub/xr.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tv/2configs/sub/xr.nix b/tv/2configs/sub/xr.nix new file mode 100644 index 0000000..6c9cbb9 --- /dev/null +++ b/tv/2configs/sub/xr.nix @@ -0,0 +1,22 @@ +{ config, lib, pkgs, ... }: + +with lib; + +{ + krebs.per-user.xr.packages = [ + pkgs.cr + ]; + + security.sudo.extraConfig = "tv ALL=(xr) NOPASSWD: ALL"; + + users.users.xr = { + extraGroups = [ + "audio" + "video" + ]; + group = "subusers"; + home = "/home/xr"; + uid = 1660006127; # genid xr + useDefaultShell = true; + }; +} |
