summaryrefslogtreecommitdiffstats
path: root/nin/2configs/skype.nix
diff options
context:
space:
mode:
authornin <nin@c-base.org>2019-09-25 19:42:41 +0200
committertv <tv@krebsco.de>2019-09-25 21:36:01 +0200
commitb6443c712dc0d0782243cc60868b362f6e28031f (patch)
treeca2ab8279f39f570527e595794b1f7a63d403d4d /nin/2configs/skype.nix
parent6a62fd95c616849e7a70fd12eebfacaf12738345 (diff)
Revert "remove nin"
This reverts commit 789a6ecc082911f12b22cb559b57cf2f76e6f2ed.
Diffstat (limited to 'nin/2configs/skype.nix')
-rw-r--r--nin/2configs/skype.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nin/2configs/skype.nix b/nin/2configs/skype.nix
new file mode 100644
index 0000000..621dfae
--- /dev/null
+++ b/nin/2configs/skype.nix
@@ -0,0 +1,27 @@
+{ config, lib, pkgs, ... }:
+
+let
+ mainUser = config.users.extraUsers.nin;
+ inherit (import <stockholm/lib>) genid;
+
+in {
+ users.extraUsers = {
+ skype = {
+ name = "skype";
+ uid = genid "skype";
+ description = "user for running skype";
+ home = "/home/skype";
+ useDefaultShell = true;
+ extraGroups = [ "audio" "video" ];
+ createHome = true;
+ };
+ };
+
+ krebs.per-user.skype.packages = [
+ pkgs.skype
+ ];
+
+ security.sudo.extraConfig = ''
+ ${mainUser.name} ALL=(skype) NOPASSWD: ALL
+ '';
+}