diff options
author | nin <nin@c-base.org> | 2019-09-25 19:42:41 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2019-09-25 21:36:01 +0200 |
commit | b6443c712dc0d0782243cc60868b362f6e28031f (patch) | |
tree | ca2ab8279f39f570527e595794b1f7a63d403d4d /nin/2configs/ableton.nix | |
parent | 6a62fd95c616849e7a70fd12eebfacaf12738345 (diff) |
Revert "remove nin"
This reverts commit 789a6ecc082911f12b22cb559b57cf2f76e6f2ed.
Diffstat (limited to 'nin/2configs/ableton.nix')
-rw-r--r-- | nin/2configs/ableton.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/nin/2configs/ableton.nix b/nin/2configs/ableton.nix new file mode 100644 index 0000000..343a908 --- /dev/null +++ b/nin/2configs/ableton.nix @@ -0,0 +1,20 @@ +{ config, pkgs, ... }: let + mainUser = config.users.extraUsers.nin; +in { + users.users= { + ableton = { + isNormalUser = true; + extraGroups = [ + "audio" + "video" + ]; + packages = [ + pkgs.wine + pkgs.winetricks + ]; + }; + }; + security.sudo.extraConfig = '' + ${mainUser.name} ALL=(ableton) NOPASSWD: ALL + ''; +} |