summaryrefslogtreecommitdiffstats
path: root/lass/2configs
diff options
context:
space:
mode:
authornin <nin@c-base.org>2018-01-03 18:37:16 +0100
committernin <nin@c-base.org>2018-01-03 18:37:16 +0100
commit54c58f207da33cac00602cdcfa5bfe5ef72fcb14 (patch)
tree3278c9fb4c5525c9fbed28a05aaea9ba8351c2c3 /lass/2configs
parent3e976918e64249a11cb433b587db094bb6105af3 (diff)
parent788cc63754e7dc4f559087ae37b74017e6b77d39 (diff)
Merge branch 'master' of prism:stockholm
Diffstat (limited to 'lass/2configs')
-rw-r--r--lass/2configs/ableton.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/lass/2configs/ableton.nix b/lass/2configs/ableton.nix
new file mode 100644
index 000000000..9d6f481b0
--- /dev/null
+++ b/lass/2configs/ableton.nix
@@ -0,0 +1,20 @@
+{ config, pkgs, ... }: let
+ mainUser = config.users.extraUsers.mainUser;
+in {
+ users.users= {
+ ableton = {
+ isNormalUser = true;
+ extraGroups = [
+ "audio"
+ "video"
+ ];
+ packages = [
+ pkgs.wine
+ pkgs.winetricks
+ ];
+ };
+ };
+ security.sudo.extraConfig = ''
+ ${mainUser.name} ALL=(ableton) NOPASSWD: ALL
+ '';
+}